etienneLefranc commited on
Commit
debf11c
·
verified ·
1 Parent(s): 2787a35

Upload 12 files

Browse files
Files changed (12) hide show
  1. .gitattributes +42 -35
  2. .gitignore +44 -0
  3. Dockerfile +29 -0
  4. README.md +19 -11
  5. TODO.md +2 -0
  6. api.js +3 -0
  7. index.html +98 -0
  8. leaderboard.txt +1413 -0
  9. package-lock.json +1701 -0
  10. package.json +18 -0
  11. replace.txt +2 -0
  12. vite.config.js +12 -0
.gitattributes CHANGED
@@ -1,35 +1,42 @@
1
- *.7z filter=lfs diff=lfs merge=lfs -text
2
- *.arrow filter=lfs diff=lfs merge=lfs -text
3
- *.bin filter=lfs diff=lfs merge=lfs -text
4
- *.bz2 filter=lfs diff=lfs merge=lfs -text
5
- *.ckpt filter=lfs diff=lfs merge=lfs -text
6
- *.ftz filter=lfs diff=lfs merge=lfs -text
7
- *.gz filter=lfs diff=lfs merge=lfs -text
8
- *.h5 filter=lfs diff=lfs merge=lfs -text
9
- *.joblib filter=lfs diff=lfs merge=lfs -text
10
- *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
- *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
- *.model filter=lfs diff=lfs merge=lfs -text
13
- *.msgpack filter=lfs diff=lfs merge=lfs -text
14
- *.npy filter=lfs diff=lfs merge=lfs -text
15
- *.npz filter=lfs diff=lfs merge=lfs -text
16
- *.onnx filter=lfs diff=lfs merge=lfs -text
17
- *.ot filter=lfs diff=lfs merge=lfs -text
18
- *.parquet filter=lfs diff=lfs merge=lfs -text
19
- *.pb filter=lfs diff=lfs merge=lfs -text
20
- *.pickle filter=lfs diff=lfs merge=lfs -text
21
- *.pkl filter=lfs diff=lfs merge=lfs -text
22
- *.pt filter=lfs diff=lfs merge=lfs -text
23
- *.pth filter=lfs diff=lfs merge=lfs -text
24
- *.rar filter=lfs diff=lfs merge=lfs -text
25
- *.safetensors filter=lfs diff=lfs merge=lfs -text
26
- saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
- *.tar.* filter=lfs diff=lfs merge=lfs -text
28
- *.tar filter=lfs diff=lfs merge=lfs -text
29
- *.tflite filter=lfs diff=lfs merge=lfs -text
30
- *.tgz filter=lfs diff=lfs merge=lfs -text
31
- *.wasm filter=lfs diff=lfs merge=lfs -text
32
- *.xz filter=lfs diff=lfs merge=lfs -text
33
- *.zip filter=lfs diff=lfs merge=lfs -text
34
- *.zst filter=lfs diff=lfs merge=lfs -text
35
- *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.npy filter=lfs diff=lfs merge=lfs -text
15
+ *.npz filter=lfs diff=lfs merge=lfs -text
16
+ *.onnx filter=lfs diff=lfs merge=lfs -text
17
+ *.ot filter=lfs diff=lfs merge=lfs -text
18
+ *.parquet filter=lfs diff=lfs merge=lfs -text
19
+ *.pb filter=lfs diff=lfs merge=lfs -text
20
+ *.pickle filter=lfs diff=lfs merge=lfs -text
21
+ *.pkl filter=lfs diff=lfs merge=lfs -text
22
+ *.pt filter=lfs diff=lfs merge=lfs -text
23
+ *.pth filter=lfs diff=lfs merge=lfs -text
24
+ *.rar filter=lfs diff=lfs merge=lfs -text
25
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
26
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
28
+ *.tar filter=lfs diff=lfs merge=lfs -text
29
+ *.tflite filter=lfs diff=lfs merge=lfs -text
30
+ *.tgz filter=lfs diff=lfs merge=lfs -text
31
+ *.wasm filter=lfs diff=lfs merge=lfs -text
32
+ *.xz filter=lfs diff=lfs merge=lfs -text
33
+ *.zip filter=lfs diff=lfs merge=lfs -text
34
+ *.zst filter=lfs diff=lfs merge=lfs -text
35
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ assets/assets/dj_old.png filter=lfs diff=lfs merge=lfs -text
37
+ assets/assets/game-over.png filter=lfs diff=lfs merge=lfs -text
38
+ assets/assets/moonlit-whispers-theo-gerard-main-version-35960-02-34.mp3 filter=lfs diff=lfs merge=lfs -text
39
+ assets/assets/tiny-steps-danijel-zambo-main-version-1433-01-48.mp3 filter=lfs diff=lfs merge=lfs -text
40
+ assets/assets/title-screen.png filter=lfs diff=lfs merge=lfs -text
41
+ assets/assets/victory.png filter=lfs diff=lfs merge=lfs -text
42
+ assets/assets/wingman_old.png filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dependencies
2
+ node_modules/
3
+ .pnpm-store/
4
+
5
+ # Build outputs
6
+ dist/
7
+ build/
8
+
9
+ # Environment files
10
+ .env
11
+ .env.*
12
+ !.env.example
13
+
14
+ # IDE and editor files
15
+ .vscode/
16
+ .idea/
17
+ *.swp
18
+ *.swo
19
+ .DS_Store
20
+ Thumbs.db
21
+
22
+ # Debug logs
23
+ npm-debug.log*
24
+ yarn-debug.log*
25
+ yarn-error.log*
26
+ pnpm-debug.log*
27
+
28
+ # Cache directories
29
+ .cache/
30
+ .temp/
31
+ .vite/
32
+
33
+ # Test coverage
34
+ coverage/
35
+
36
+
37
+ # Temporary files
38
+ *.tmp
39
+ *.temp
40
+
41
+
42
+ # System files
43
+ .DS_Store
44
+ desktop.ini
Dockerfile ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use the official Node.js image as the base image
2
+ FROM node:18-alpine
3
+
4
+ # Set the working directory
5
+ WORKDIR /app
6
+
7
+ # Copy package.json and package-lock.json
8
+ COPY package*.json ./
9
+
10
+ # Install dependencies
11
+ RUN npm install
12
+
13
+ # Copy the rest of the application code
14
+ COPY . .
15
+
16
+ # Ensure the correct ownership and permissions
17
+ RUN chown -R node:node /app
18
+
19
+ # Switch to the non-root 'user' user
20
+ USER node
21
+
22
+ # Expose the port the app runs on
23
+ EXPOSE 7860
24
+
25
+ # Set environment variable to disable opening browser
26
+ ENV BROWSER=none
27
+
28
+ # Start the Vite development server with specific configurations
29
+ CMD ["npm", "run", "dev", "--", "--host", "--port", "7860", "--strictPort"]
README.md CHANGED
@@ -1,11 +1,19 @@
1
- ---
2
- title: EtienneHackatonGameVibe
3
- emoji: 📊
4
- colorFrom: blue
5
- colorTo: pink
6
- sdk: docker
7
- pinned: false
8
- license: mit
9
- ---
10
-
11
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Shyguy's Wingman
3
+ emoji: 💘
4
+ colorFrom: purple
5
+ colorTo: yellow
6
+ sdk: docker
7
+ pinned: false
8
+ short_description: Help the Shy Guy finaly talk to Jessica
9
+ thumbnail: >-
10
+ https://cdn-uploads.huggingface.co/production/uploads/65707a9053269901a14c5b3d/1OIdDpFEAKjWB_9jq4SA9.png
11
+ ---
12
+ Please feel free to contribute !
13
+ Authors:
14
+ Jakub Rada
15
+ David Dobas
16
+ Shashwat Sharma
17
+ Etienne Lefranc
18
+ Alyosha Saaru
19
+ Théo Michel
TODO.md ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ - [ ] fix the collision detection at the start of the game (walls)
2
+ - [ ] Fix reset of the game after new game
api.js ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ export const HUGGINGFACE_API_KEY = process.env.HUGGINGFACE_API_KEY;
2
+ export const ELEVENLABS_API_KEY = process.env.ELEVENLABS_API_KEY;
3
+ export const MISTRAL_API_KEY = process.env.MISTRAL_API_KEY;
index.html ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Shyguy's Wingman</title>
7
+ <link rel="stylesheet" href="/styles/style.css" />
8
+ <!-- Font Awesome for microphone icon -->
9
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
10
+ <link rel="preconnect" href="https://fonts.googleapis.com" />
11
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
12
+ <link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet" />
13
+ </head>
14
+ <body>
15
+ <div class="intro-view active" id="introView">
16
+ <div class="intro-content">
17
+ <img src="/assets/assets/intro-image.jpg" alt="Game Intro" class="intro-image" />
18
+ <button id="startGameBtn" class="start-game-button">Start Game</button>
19
+ </div>
20
+ </div>
21
+
22
+ <div class="status-bar">
23
+ <div class="status-text" id="statusText">
24
+ You are playing as the Wingman. You need to help your friend get the girl of his dreams. Don't let him leave!
25
+ </div>
26
+ </div>
27
+
28
+ <div class="game-view active" id="gameView">
29
+ <div class="container">
30
+ <div class="game-section">
31
+ <canvas id="gameCanvas"></canvas>
32
+ </div>
33
+ <div class="chat-section">
34
+ <div class="chat-messages" id="chatMessages">
35
+ <!-- Messages will be added here -->
36
+ </div>
37
+ <div class="input-area">
38
+ <textarea id="messageInput" placeholder="Type your message here..." rows="3"></textarea>
39
+ <div class="button-group">
40
+ <button id="sendButton" class="send-button">Send</button>
41
+ <button id="micButton" class="mic-button">
42
+ <i class="fas fa-microphone"></i>
43
+ </button>
44
+ </div>
45
+ </div>
46
+ </div>
47
+ </div>
48
+ </div>
49
+
50
+ <div class="dialogue-view" id="dialogueView">
51
+ <div class="character-section">
52
+ <div class="character left-character">
53
+ <img id="leftCharacterImg" class="character-img" />
54
+ </div>
55
+ <div class="dialogue-box">
56
+ <div class="dialogue-messages" id="dialogueMessages">
57
+ <!-- Dialogue messages will be added here -->
58
+ </div>
59
+ <div class="loading-indicator"><span>Loading</span><span class="loading-dots"></span></div>
60
+ </div>
61
+ <div class="character right-character">
62
+ <img id="rightCharacterImg" class="character-img" />
63
+ </div>
64
+ </div>
65
+ <div class="dialogue-controls">
66
+ <button id="dialogueContinueButton" class="continue-button">Continue</button>
67
+ <button id="dialogueNextButton" class="next-button">Next</button>
68
+ </div>
69
+ </div>
70
+
71
+ <div class="game-over-view" id="gameOverView">
72
+ <div class="game-over-content">
73
+ <img id="gameOverImage" class="game-over-image" src="" alt="Game Over" />
74
+ <div class="game-over-text" id="gameOverText">
75
+ <!-- Text will be set via JS -->
76
+ </div>
77
+ <div class="game-over-controls">
78
+ <button id="playAgainBtn" class="play-again-button">Play Again</button>
79
+ </div>
80
+ </div>
81
+ </div>
82
+
83
+ <div class="debug-controls" id="debugControls">
84
+ <div class="game-controls">
85
+ <button id="targetDoorBtn" class="debug-button">Target Door</button>
86
+ <button id="targetGirlBtn" class="debug-button">Target Girl</button>
87
+ <button id="targetBarBtn" class="debug-button">Target Bar</button>
88
+ <button id="targetDjBtn" class="debug-button">Target Dj</button>
89
+ <button id="targetSisterBtn" class="debug-button">Target Sister</button>
90
+ <button id="stopNavBtn" class="debug-button">Stop Navigation</button>
91
+ <button id="togglePushBtn" class="debug-button">Enable Push</button>
92
+ <button id="speedBoostBtn" class="debug-button">Speed Boost</button>
93
+ <button id="toggleVoiceBtn" class="debug-button">Enable Voice</button>
94
+ </div>
95
+ </div>
96
+ <script src="./src/index.js" type="module"></script>
97
+ </body>
98
+ </html>
leaderboard.txt ADDED
@@ -0,0 +1,1413 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+
4
+
5
+
6
+
7
+ David Dobas Score: 695
8
+ David Dobas Score: 287
9
+ David Dobas Score: 246
10
+ David Dobas Score: 833
11
+ David Dobas Score: 213
12
+ David Dobas Score: 380
13
+ David Dobas Score: 393
14
+ David Dobas Score: 234
15
+ David Dobas Score: 224
16
+ David Dobas Score: 541
17
+ David Dobas Score: 361
18
+ David Dobas Score: 720
19
+ David Dobas Score: 571
20
+ David Dobas Score: 135
21
+ David Dobas Score: 192
22
+ David Dobas Score: 327
23
+ David Dobas Score: 282
24
+ David Dobas Score: 209
25
+ David Dobas Score: 231
26
+ David Dobas Score: 506
27
+ David Dobas Score: 233
28
+ David Dobas Score: 746
29
+ David Dobas Score: 312
30
+ David Dobas Score: 492
31
+ David Dobas Score: 611
32
+ David Dobas Score: 151
33
+ David Dobas Score: 315
34
+ David Dobas Score: 695
35
+ David Dobas Score: 840
36
+ David Dobas Score: 746
37
+ David Dobas Score: 588
38
+ David Dobas Score: 297
39
+ David Dobas Score: 67
40
+ David Dobas Score: 106
41
+ David Dobas Score: 701
42
+ David Dobas Score: 92
43
+ David Dobas Score: 793
44
+ David Dobas Score: 44
45
+ David Dobas Score: 853
46
+ David Dobas Score: 576
47
+ David Dobas Score: 863
48
+ David Dobas Score: 181
49
+ David Dobas Score: 416
50
+ David Dobas Score: 529
51
+ David Dobas Score: 502
52
+ David Dobas Score: 90
53
+ David Dobas Score: 858
54
+ David Dobas Score: 130
55
+ David Dobas Score: 441
56
+ David Dobas Score: 630
57
+ David Dobas Score: 102
58
+ David Dobas Score: 195
59
+ David Dobas Score: 888
60
+ David Dobas Score: 754
61
+ David Dobas Score: 66
62
+ David Dobas Score: 313
63
+ David Dobas Score: 368
64
+ David Dobas Score: 535
65
+ David Dobas Score: 544
66
+ David Dobas Score: 843
67
+ David Dobas Score: 139
68
+ David Dobas Score: 777
69
+ David Dobas Score: 442
70
+ David Dobas Score: 383
71
+ David Dobas Score: 61
72
+ David Dobas Score: 274
73
+ David Dobas Score: 375
74
+ David Dobas Score: 665
75
+ David Dobas Score: 712
76
+ David Dobas Score: 336
77
+ David Dobas Score: 723
78
+ David Dobas Score: 380
79
+ David Dobas Score: 593
80
+ David Dobas Score: 480
81
+ David Dobas Score: 177
82
+ David Dobas Score: 861
83
+ David Dobas Score: 171
84
+ David Dobas Score: 897
85
+ David Dobas Score: 449
86
+ David Dobas Score: 355
87
+ David Dobas Score: 173
88
+ David Dobas Score: 779
89
+ David Dobas Score: 489
90
+ David Dobas Score: 750
91
+ David Dobas Score: 578
92
+ David Dobas Score: 785
93
+ David Dobas Score: 508
94
+ David Dobas Score: 739
95
+ David Dobas Score: 575
96
+ David Dobas Score: 315
97
+ David Dobas Score: 526
98
+ David Dobas Score: 505
99
+ David Dobas Score: 842
100
+ David Dobas Score: 291
101
+ David Dobas Score: 651
102
+ David Dobas Score: 171
103
+ David Dobas Score: 296
104
+ David Dobas Score: 428
105
+ David Dobas Score: 865
106
+ David Dobas Score: 243
107
+ David Dobas Score: 261
108
+ David Dobas Score: 184
109
+ David Dobas Score: 98
110
+ David Dobas Score: 10
111
+ David Dobas Score: 236
112
+ David Dobas Score: 782
113
+ David Dobas Score: 766
114
+ David Dobas Score: 898
115
+ David Dobas Score: 65
116
+ David Dobas Score: 394
117
+ David Dobas Score: 524
118
+ David Dobas Score: 773
119
+ David Dobas Score: 279
120
+ David Dobas Score: 313
121
+ David Dobas Score: 546
122
+ David Dobas Score: 47
123
+ David Dobas Score: 241
124
+ David Dobas Score: 67
125
+ David Dobas Score: 787
126
+ David Dobas Score: 592
127
+ David Dobas Score: 579
128
+ David Dobas Score: 406
129
+ David Dobas Score: 94
130
+ David Dobas Score: 853
131
+ David Dobas Score: 217
132
+ David Dobas Score: 354
133
+ David Dobas Score: 300
134
+ David Dobas Score: 411
135
+ David Dobas Score: 275
136
+ David Dobas Score: 295
137
+ David Dobas Score: 117
138
+ David Dobas Score: 411
139
+ David Dobas Score: 610
140
+ David Dobas Score: 711
141
+ David Dobas Score: 532
142
+ David Dobas Score: 16
143
+ David Dobas Score: 899
144
+ David Dobas Score: 549
145
+ David Dobas Score: 381
146
+ David Dobas Score: 253
147
+ David Dobas Score: 853
148
+ David Dobas Score: 508
149
+ David Dobas Score: 709
150
+ David Dobas Score: 64
151
+ David Dobas Score: 29
152
+ David Dobas Score: 277
153
+ David Dobas Score: 495
154
+ David Dobas Score: 509
155
+ David Dobas Score: 113
156
+ David Dobas Score: 39
157
+ David Dobas Score: 778
158
+ David Dobas Score: 750
159
+ David Dobas Score: 218
160
+ David Dobas Score: 207
161
+ David Dobas Score: 389
162
+ David Dobas Score: 495
163
+ David Dobas Score: 892
164
+ David Dobas Score: 350
165
+ David Dobas Score: 425
166
+ David Dobas Score: 324
167
+ David Dobas Score: 282
168
+ David Dobas Score: 716
169
+ David Dobas Score: 442
170
+ David Dobas Score: 612
171
+ David Dobas Score: 888
172
+ David Dobas Score: 713
173
+ David Dobas Score: 778
174
+ David Dobas Score: 240
175
+ David Dobas Score: 579
176
+ David Dobas Score: 10
177
+ David Dobas Score: 587
178
+ David Dobas Score: 297
179
+ David Dobas Score: 764
180
+ David Dobas Score: 74
181
+ David Dobas Score: 867
182
+ David Dobas Score: 516
183
+ David Dobas Score: 735
184
+ David Dobas Score: 146
185
+ David Dobas Score: 258
186
+ David Dobas Score: 470
187
+ David Dobas Score: 745
188
+ David Dobas Score: 446
189
+ David Dobas Score: 889
190
+ David Dobas Score: 727
191
+ David Dobas Score: 585
192
+ David Dobas Score: 878
193
+ David Dobas Score: 99
194
+ David Dobas Score: 531
195
+ David Dobas Score: 220
196
+ David Dobas Score: 447
197
+ David Dobas Score: 172
198
+ David Dobas Score: 677
199
+ David Dobas Score: 324
200
+ David Dobas Score: 458
201
+ David Dobas Score: 18
202
+ David Dobas Score: 739
203
+ David Dobas Score: 193
204
+ David Dobas Score: 748
205
+ David Dobas Score: 762
206
+ David Dobas Score: 702
207
+ David Dobas Score: 395
208
+ David Dobas Score: 19
209
+ David Dobas Score: 323
210
+ David Dobas Score: 746
211
+ David Dobas Score: 272
212
+ David Dobas Score: 774
213
+ David Dobas Score: 881
214
+ David Dobas Score: 174
215
+ David Dobas Score: 448
216
+ David Dobas Score: 207
217
+ David Dobas Score: 279
218
+ David Dobas Score: 100
219
+ David Dobas Score: 488
220
+ David Dobas Score: 576
221
+ David Dobas Score: 638
222
+ David Dobas Score: 605
223
+ David Dobas Score: 742
224
+ David Dobas Score: 714
225
+ David Dobas Score: 360
226
+ David Dobas Score: 170
227
+ David Dobas Score: 578
228
+ David Dobas Score: 249
229
+ David Dobas Score: 614
230
+ David Dobas Score: 505
231
+ David Dobas Score: 683
232
+ David Dobas Score: 441
233
+ David Dobas Score: 445
234
+ David Dobas Score: 638
235
+ David Dobas Score: 413
236
+ David Dobas Score: 333
237
+ David Dobas Score: 499
238
+ David Dobas Score: 590
239
+ David Dobas Score: 575
240
+ David Dobas Score: 626
241
+ David Dobas Score: 377
242
+ David Dobas Score: 265
243
+ David Dobas Score: 461
244
+ David Dobas Score: 407
245
+ David Dobas Score: 869
246
+ David Dobas Score: 409
247
+ David Dobas Score: 628
248
+ David Dobas Score: 647
249
+ David Dobas Score: 516
250
+ David Dobas Score: 261
251
+ David Dobas Score: 507
252
+ David Dobas Score: 95
253
+ David Dobas Score: 792
254
+ David Dobas Score: 675
255
+ David Dobas Score: 136
256
+ David Dobas Score: 583
257
+ David Dobas Score: 698
258
+ David Dobas Score: 365
259
+ David Dobas Score: 829
260
+ David Dobas Score: 579
261
+ David Dobas Score: 821
262
+ David Dobas Score: 377
263
+ David Dobas Score: 122
264
+ David Dobas Score: 752
265
+ David Dobas Score: 65
266
+ David Dobas Score: 617
267
+ David Dobas Score: 189
268
+ David Dobas Score: 541
269
+ David Dobas Score: 678
270
+ David Dobas Score: 61
271
+ David Dobas Score: 351
272
+ David Dobas Score: 149
273
+ David Dobas Score: 535
274
+ David Dobas Score: 390
275
+ David Dobas Score: 550
276
+ David Dobas Score: 177
277
+ David Dobas Score: 826
278
+ David Dobas Score: 541
279
+ David Dobas Score: 695
280
+ David Dobas Score: 372
281
+ David Dobas Score: 454
282
+ David Dobas Score: 314
283
+ David Dobas Score: 704
284
+ David Dobas Score: 318
285
+ David Dobas Score: 257
286
+ David Dobas Score: 403
287
+ David Dobas Score: 554
288
+ David Dobas Score: 652
289
+ David Dobas Score: 607
290
+ David Dobas Score: 753
291
+ David Dobas Score: 672
292
+ David Dobas Score: 64
293
+ David Dobas Score: 728
294
+ David Dobas Score: 770
295
+ David Dobas Score: 371
296
+ David Dobas Score: 217
297
+ David Dobas Score: 445
298
+ David Dobas Score: 301
299
+ David Dobas Score: 175
300
+ David Dobas Score: 45
301
+ David Dobas Score: 60
302
+ David Dobas Score: 670
303
+ David Dobas Score: 873
304
+ David Dobas Score: 513
305
+ David Dobas Score: 69
306
+ David Dobas Score: 96
307
+ David Dobas Score: 396
308
+ David Dobas Score: 223
309
+ David Dobas Score: 755
310
+ David Dobas Score: 315
311
+ David Dobas Score: 873
312
+ David Dobas Score: 271
313
+ David Dobas Score: 897
314
+ David Dobas Score: 319
315
+ David Dobas Score: 836
316
+ David Dobas Score: 682
317
+ David Dobas Score: 749
318
+ David Dobas Score: 212
319
+ David Dobas Score: 62
320
+ David Dobas Score: 381
321
+ David Dobas Score: 434
322
+ David Dobas Score: 260
323
+ David Dobas Score: 474
324
+ David Dobas Score: 397
325
+ David Dobas Score: 137
326
+ David Dobas Score: 721
327
+ David Dobas Score: 14
328
+ David Dobas Score: 201
329
+ David Dobas Score: 455
330
+ David Dobas Score: 246
331
+ David Dobas Score: 757
332
+ David Dobas Score: 227
333
+ David Dobas Score: 862
334
+ David Dobas Score: 358
335
+ David Dobas Score: 575
336
+ David Dobas Score: 239
337
+ David Dobas Score: 90
338
+ David Dobas Score: 451
339
+ David Dobas Score: 317
340
+ David Dobas Score: 59
341
+ David Dobas Score: 22
342
+ David Dobas Score: 554
343
+ David Dobas Score: 388
344
+ David Dobas Score: 249
345
+ David Dobas Score: 33
346
+ David Dobas Score: 575
347
+ David Dobas Score: 364
348
+ David Dobas Score: 103
349
+ David Dobas Score: 45
350
+ David Dobas Score: 589
351
+ David Dobas Score: 466
352
+ David Dobas Score: 277
353
+ David Dobas Score: 249
354
+ David Dobas Score: 865
355
+ David Dobas Score: 653
356
+ David Dobas Score: 422
357
+ David Dobas Score: 478
358
+ David Dobas Score: 365
359
+ David Dobas Score: 564
360
+ David Dobas Score: 16
361
+ David Dobas Score: 38
362
+ David Dobas Score: 450
363
+ David Dobas Score: 452
364
+ David Dobas Score: 665
365
+ David Dobas Score: 859
366
+ David Dobas Score: 222
367
+ David Dobas Score: 319
368
+ David Dobas Score: 443
369
+ David Dobas Score: 638
370
+ David Dobas Score: 868
371
+ David Dobas Score: 806
372
+ David Dobas Score: 206
373
+ David Dobas Score: 174
374
+ David Dobas Score: 438
375
+ David Dobas Score: 672
376
+ David Dobas Score: 245
377
+ David Dobas Score: 217
378
+ David Dobas Score: 887
379
+ David Dobas Score: 559
380
+ David Dobas Score: 696
381
+ David Dobas Score: 10
382
+ David Dobas Score: 707
383
+ David Dobas Score: 264
384
+ David Dobas Score: 467
385
+ David Dobas Score: 630
386
+ David Dobas Score: 412
387
+ David Dobas Score: 443
388
+ David Dobas Score: 256
389
+ David Dobas Score: 200
390
+ David Dobas Score: 827
391
+ David Dobas Score: 577
392
+ David Dobas Score: 778
393
+ David Dobas Score: 736
394
+ David Dobas Score: 92
395
+ David Dobas Score: 870
396
+ David Dobas Score: 858
397
+ David Dobas Score: 462
398
+ David Dobas Score: 42
399
+ David Dobas Score: 363
400
+ David Dobas Score: 440
401
+ David Dobas Score: 344
402
+ David Dobas Score: 626
403
+ David Dobas Score: 221
404
+ David Dobas Score: 512
405
+ David Dobas Score: 838
406
+ David Dobas Score: 265
407
+ David Dobas Score: 358
408
+ David Dobas Score: 652
409
+ David Dobas Score: 690
410
+ David Dobas Score: 464
411
+ David Dobas Score: 151
412
+ David Dobas Score: 377
413
+ David Dobas Score: 698
414
+ David Dobas Score: 171
415
+ David Dobas Score: 311
416
+ David Dobas Score: 161
417
+ David Dobas Score: 279
418
+ David Dobas Score: 111
419
+ David Dobas Score: 297
420
+ David Dobas Score: 281
421
+ David Dobas Score: 84
422
+ David Dobas Score: 292
423
+ David Dobas Score: 703
424
+ David Dobas Score: 562
425
+ David Dobas Score: 214
426
+ David Dobas Score: 696
427
+ David Dobas Score: 659
428
+ David Dobas Score: 859
429
+ David Dobas Score: 44
430
+ David Dobas Score: 644
431
+ David Dobas Score: 731
432
+ David Dobas Score: 571
433
+ David Dobas Score: 135
434
+ David Dobas Score: 337
435
+ David Dobas Score: 635
436
+ David Dobas Score: 363
437
+ David Dobas Score: 768
438
+ David Dobas Score: 383
439
+ David Dobas Score: 827
440
+ David Dobas Score: 519
441
+ David Dobas Score: 209
442
+ David Dobas Score: 872
443
+ David Dobas Score: 160
444
+ David Dobas Score: 82
445
+ David Dobas Score: 443
446
+ David Dobas Score: 290
447
+ David Dobas Score: 83
448
+ David Dobas Score: 424
449
+ David Dobas Score: 133
450
+ David Dobas Score: 809
451
+ David Dobas Score: 639
452
+ David Dobas Score: 774
453
+ David Dobas Score: 743
454
+ David Dobas Score: 646
455
+ David Dobas Score: 301
456
+ David Dobas Score: 122
457
+ David Dobas Score: 170
458
+ David Dobas Score: 774
459
+ David Dobas Score: 49
460
+ David Dobas Score: 565
461
+ David Dobas Score: 330
462
+ David Dobas Score: 219
463
+ David Dobas Score: 643
464
+ David Dobas Score: 666
465
+ David Dobas Score: 519
466
+ David Dobas Score: 344
467
+ David Dobas Score: 860
468
+ David Dobas Score: 483
469
+ David Dobas Score: 522
470
+ David Dobas Score: 835
471
+ David Dobas Score: 174
472
+ David Dobas Score: 815
473
+ David Dobas Score: 61
474
+ David Dobas Score: 310
475
+ David Dobas Score: 61
476
+ David Dobas Score: 204
477
+ David Dobas Score: 850
478
+ David Dobas Score: 768
479
+ David Dobas Score: 283
480
+ David Dobas Score: 731
481
+ David Dobas Score: 705
482
+ David Dobas Score: 747
483
+ David Dobas Score: 673
484
+ David Dobas Score: 704
485
+ David Dobas Score: 623
486
+ David Dobas Score: 127
487
+ David Dobas Score: 35
488
+ David Dobas Score: 489
489
+ David Dobas Score: 863
490
+ David Dobas Score: 618
491
+ David Dobas Score: 214
492
+ David Dobas Score: 579
493
+ David Dobas Score: 307
494
+ David Dobas Score: 628
495
+ David Dobas Score: 697
496
+ David Dobas Score: 25
497
+ David Dobas Score: 398
498
+ David Dobas Score: 437
499
+ David Dobas Score: 42
500
+ David Dobas Score: 202
501
+ David Dobas Score: 739
502
+ David Dobas Score: 7
503
+ David Dobas Score: 689
504
+ David Dobas Score: 554
505
+ David Dobas Score: 698
506
+ David Dobas Score: 749
507
+ David Dobas Score: 571
508
+ David Dobas Score: 390
509
+ David Dobas Score: 676
510
+ David Dobas Score: 573
511
+ David Dobas Score: 467
512
+ David Dobas Score: 666
513
+ David Dobas Score: 301
514
+ David Dobas Score: 0
515
+ David Dobas Score: 266
516
+ David Dobas Score: 614
517
+ David Dobas Score: 215
518
+ David Dobas Score: 372
519
+ David Dobas Score: 319
520
+ David Dobas Score: 448
521
+ David Dobas Score: 340
522
+ David Dobas Score: 234
523
+ David Dobas Score: 280
524
+ David Dobas Score: 170
525
+ David Dobas Score: 457
526
+ David Dobas Score: 513
527
+ David Dobas Score: 827
528
+ David Dobas Score: 402
529
+ David Dobas Score: 156
530
+ David Dobas Score: 176
531
+ David Dobas Score: 479
532
+ David Dobas Score: 36
533
+ David Dobas Score: 690
534
+ David Dobas Score: 88
535
+ David Dobas Score: 169
536
+ David Dobas Score: 244
537
+ David Dobas Score: 773
538
+ David Dobas Score: 730
539
+ David Dobas Score: 325
540
+ David Dobas Score: 899
541
+ David Dobas Score: 246
542
+ David Dobas Score: 601
543
+ David Dobas Score: 585
544
+ David Dobas Score: 287
545
+ David Dobas Score: 538
546
+ David Dobas Score: 54
547
+ David Dobas Score: 272
548
+ David Dobas Score: 285
549
+ David Dobas Score: 518
550
+ David Dobas Score: 234
551
+ David Dobas Score: 614
552
+ David Dobas Score: 316
553
+ David Dobas Score: 7
554
+ David Dobas Score: 271
555
+ David Dobas Score: 67
556
+ David Dobas Score: 876
557
+ David Dobas Score: 74
558
+ David Dobas Score: 809
559
+ David Dobas Score: 771
560
+ David Dobas Score: 567
561
+ David Dobas Score: 871
562
+ David Dobas Score: 599
563
+ David Dobas Score: 532
564
+ David Dobas Score: 822
565
+ David Dobas Score: 324
566
+ David Dobas Score: 122
567
+ David Dobas Score: 192
568
+ David Dobas Score: 349
569
+ David Dobas Score: 125
570
+ David Dobas Score: 822
571
+ David Dobas Score: 286
572
+ David Dobas Score: 200
573
+ David Dobas Score: 815
574
+ David Dobas Score: 210
575
+ David Dobas Score: 214
576
+ David Dobas Score: 893
577
+ David Dobas Score: 764
578
+ David Dobas Score: 214
579
+ David Dobas Score: 73
580
+ David Dobas Score: 365
581
+ David Dobas Score: 453
582
+ David Dobas Score: 664
583
+ David Dobas Score: 199
584
+ David Dobas Score: 830
585
+ David Dobas Score: 710
586
+ David Dobas Score: 742
587
+ David Dobas Score: 878
588
+ David Dobas Score: 532
589
+ David Dobas Score: 794
590
+ David Dobas Score: 117
591
+ David Dobas Score: 71
592
+ David Dobas Score: 868
593
+ David Dobas Score: 669
594
+ David Dobas Score: 537
595
+ David Dobas Score: 710
596
+ David Dobas Score: 155
597
+ David Dobas Score: 370
598
+ David Dobas Score: 88
599
+ David Dobas Score: 115
600
+ David Dobas Score: 241
601
+ David Dobas Score: 506
602
+ David Dobas Score: 767
603
+ David Dobas Score: 856
604
+ David Dobas Score: 845
605
+ David Dobas Score: 695
606
+ David Dobas Score: 728
607
+ David Dobas Score: 863
608
+ David Dobas Score: 845
609
+ David Dobas Score: 444
610
+ David Dobas Score: 346
611
+ David Dobas Score: 35
612
+ David Dobas Score: 27
613
+ David Dobas Score: 805
614
+ David Dobas Score: 679
615
+ David Dobas Score: 307
616
+ David Dobas Score: 603
617
+ David Dobas Score: 83
618
+ David Dobas Score: 293
619
+ David Dobas Score: 378
620
+ David Dobas Score: 402
621
+ David Dobas Score: 27
622
+ David Dobas Score: 347
623
+ David Dobas Score: 629
624
+ David Dobas Score: 121
625
+ David Dobas Score: 175
626
+ David Dobas Score: 110
627
+ David Dobas Score: 329
628
+ David Dobas Score: 668
629
+ David Dobas Score: 728
630
+ David Dobas Score: 113
631
+ David Dobas Score: 22
632
+ David Dobas Score: 106
633
+ David Dobas Score: 523
634
+ David Dobas Score: 619
635
+ David Dobas Score: 335
636
+ David Dobas Score: 430
637
+ David Dobas Score: 46
638
+ David Dobas Score: 394
639
+ David Dobas Score: 69
640
+ David Dobas Score: 408
641
+ David Dobas Score: 801
642
+ David Dobas Score: 630
643
+ David Dobas Score: 222
644
+ David Dobas Score: 34
645
+ David Dobas Score: 148
646
+ David Dobas Score: 749
647
+ David Dobas Score: 697
648
+ David Dobas Score: 638
649
+ David Dobas Score: 568
650
+ David Dobas Score: 423
651
+ David Dobas Score: 791
652
+ David Dobas Score: 558
653
+ David Dobas Score: 455
654
+ David Dobas Score: 387
655
+ David Dobas Score: 279
656
+ David Dobas Score: 628
657
+ David Dobas Score: 667
658
+ David Dobas Score: 269
659
+ David Dobas Score: 312
660
+ David Dobas Score: 658
661
+ David Dobas Score: 578
662
+ David Dobas Score: 196
663
+ David Dobas Score: 420
664
+ David Dobas Score: 747
665
+ David Dobas Score: 583
666
+ David Dobas Score: 691
667
+ David Dobas Score: 812
668
+ David Dobas Score: 652
669
+ David Dobas Score: 862
670
+ David Dobas Score: 206
671
+ David Dobas Score: 500
672
+ David Dobas Score: 120
673
+ David Dobas Score: 834
674
+ David Dobas Score: 161
675
+ David Dobas Score: 130
676
+ David Dobas Score: 236
677
+ David Dobas Score: 652
678
+ David Dobas Score: 19
679
+ David Dobas Score: 667
680
+ David Dobas Score: 493
681
+ David Dobas Score: 176
682
+ David Dobas Score: 351
683
+ David Dobas Score: 866
684
+ David Dobas Score: 653
685
+ David Dobas Score: 822
686
+ David Dobas Score: 461
687
+ David Dobas Score: 532
688
+ David Dobas Score: 758
689
+ David Dobas Score: 841
690
+ David Dobas Score: 764
691
+ David Dobas Score: 778
692
+ David Dobas Score: 589
693
+ David Dobas Score: 243
694
+ David Dobas Score: 339
695
+ David Dobas Score: 118
696
+ David Dobas Score: 0
697
+ David Dobas Score: 179
698
+ David Dobas Score: 62
699
+ David Dobas Score: 446
700
+ David Dobas Score: 540
701
+ David Dobas Score: 743
702
+ David Dobas Score: 597
703
+ David Dobas Score: 149
704
+ David Dobas Score: 29
705
+ David Dobas Score: 209
706
+ David Dobas Score: 284
707
+ David Dobas Score: 27
708
+ David Dobas Score: 575
709
+ David Dobas Score: 198
710
+ David Dobas Score: 780
711
+ David Dobas Score: 520
712
+ David Dobas Score: 652
713
+ David Dobas Score: 409
714
+ David Dobas Score: 396
715
+ David Dobas Score: 405
716
+ David Dobas Score: 151
717
+ David Dobas Score: 123
718
+ David Dobas Score: 686
719
+ David Dobas Score: 656
720
+ David Dobas Score: 784
721
+ David Dobas Score: 383
722
+ David Dobas Score: 256
723
+ David Dobas Score: 283
724
+ David Dobas Score: 706
725
+ David Dobas Score: 99
726
+ David Dobas Score: 538
727
+ David Dobas Score: 125
728
+ David Dobas Score: 129
729
+ David Dobas Score: 274
730
+ David Dobas Score: 799
731
+ David Dobas Score: 898
732
+ David Dobas Score: 465
733
+ David Dobas Score: 219
734
+ David Dobas Score: 596
735
+ David Dobas Score: 618
736
+ David Dobas Score: 370
737
+ David Dobas Score: 445
738
+ David Dobas Score: 617
739
+ David Dobas Score: 706
740
+ David Dobas Score: 194
741
+ David Dobas Score: 342
742
+ David Dobas Score: 337
743
+ David Dobas Score: 292
744
+ David Dobas Score: 262
745
+ David Dobas Score: 683
746
+ David Dobas Score: 571
747
+ David Dobas Score: 393
748
+ David Dobas Score: 318
749
+ David Dobas Score: 619
750
+ David Dobas Score: 255
751
+ David Dobas Score: 787
752
+ David Dobas Score: 594
753
+ David Dobas Score: 197
754
+ David Dobas Score: 540
755
+ David Dobas Score: 592
756
+ David Dobas Score: 620
757
+ David Dobas Score: 343
758
+ David Dobas Score: 251
759
+ David Dobas Score: 840
760
+ David Dobas Score: 477
761
+ David Dobas Score: 572
762
+ David Dobas Score: 789
763
+ David Dobas Score: 348
764
+ David Dobas Score: 251
765
+ David Dobas Score: 571
766
+ David Dobas Score: 639
767
+ David Dobas Score: 330
768
+ David Dobas Score: 764
769
+ David Dobas Score: 476
770
+ David Dobas Score: 641
771
+ David Dobas Score: 719
772
+ David Dobas Score: 247
773
+ David Dobas Score: 705
774
+ David Dobas Score: 95
775
+ David Dobas Score: 26
776
+ David Dobas Score: 105
777
+ David Dobas Score: 109
778
+ David Dobas Score: 777
779
+ David Dobas Score: 489
780
+ David Dobas Score: 749
781
+ David Dobas Score: 741
782
+ David Dobas Score: 661
783
+ David Dobas Score: 875
784
+ David Dobas Score: 893
785
+ David Dobas Score: 582
786
+ David Dobas Score: 345
787
+ David Dobas Score: 242
788
+ David Dobas Score: 432
789
+ David Dobas Score: 159
790
+ David Dobas Score: 158
791
+ David Dobas Score: 199
792
+ David Dobas Score: 514
793
+ David Dobas Score: 250
794
+ David Dobas Score: 768
795
+ David Dobas Score: 603
796
+ David Dobas Score: 757
797
+ David Dobas Score: 241
798
+ David Dobas Score: 691
799
+ David Dobas Score: 382
800
+ David Dobas Score: 860
801
+ David Dobas Score: 687
802
+ David Dobas Score: 408
803
+ David Dobas Score: 674
804
+ David Dobas Score: 554
805
+ David Dobas Score: 673
806
+ David Dobas Score: 645
807
+ David Dobas Score: 729
808
+ David Dobas Score: 403
809
+ David Dobas Score: 883
810
+ David Dobas Score: 199
811
+ David Dobas Score: 832
812
+ David Dobas Score: 82
813
+ David Dobas Score: 670
814
+ David Dobas Score: 3
815
+ David Dobas Score: 479
816
+ David Dobas Score: 537
817
+ David Dobas Score: 13
818
+ David Dobas Score: 658
819
+ David Dobas Score: 436
820
+ David Dobas Score: 816
821
+ David Dobas Score: 288
822
+ David Dobas Score: 890
823
+ David Dobas Score: 361
824
+ David Dobas Score: 297
825
+ David Dobas Score: 899
826
+ David Dobas Score: 484
827
+ David Dobas Score: 564
828
+ David Dobas Score: 853
829
+ David Dobas Score: 92
830
+ David Dobas Score: 273
831
+ David Dobas Score: 505
832
+ David Dobas Score: 220
833
+ David Dobas Score: 847
834
+ David Dobas Score: 835
835
+ David Dobas Score: 729
836
+ David Dobas Score: 619
837
+ David Dobas Score: 647
838
+ David Dobas Score: 475
839
+ David Dobas Score: 829
840
+ David Dobas Score: 853
841
+ David Dobas Score: 263
842
+ David Dobas Score: 49
843
+ David Dobas Score: 392
844
+ David Dobas Score: 788
845
+ David Dobas Score: 386
846
+ David Dobas Score: 897
847
+ David Dobas Score: 384
848
+ David Dobas Score: 297
849
+ David Dobas Score: 887
850
+ David Dobas Score: 749
851
+ David Dobas Score: 381
852
+ David Dobas Score: 623
853
+ David Dobas Score: 447
854
+ David Dobas Score: 476
855
+ David Dobas Score: 470
856
+ David Dobas Score: 628
857
+ David Dobas Score: 536
858
+ David Dobas Score: 316
859
+ David Dobas Score: 331
860
+ David Dobas Score: 652
861
+ David Dobas Score: 107
862
+ David Dobas Score: 814
863
+ David Dobas Score: 644
864
+ David Dobas Score: 204
865
+ David Dobas Score: 469
866
+ David Dobas Score: 725
867
+ David Dobas Score: 861
868
+ David Dobas Score: 634
869
+ David Dobas Score: 49
870
+ David Dobas Score: 451
871
+ David Dobas Score: 30
872
+ David Dobas Score: 159
873
+ David Dobas Score: 639
874
+ David Dobas Score: 555
875
+ David Dobas Score: 575
876
+ David Dobas Score: 671
877
+ David Dobas Score: 730
878
+ David Dobas Score: 704
879
+ David Dobas Score: 106
880
+ David Dobas Score: 476
881
+ David Dobas Score: 67
882
+ David Dobas Score: 127
883
+ David Dobas Score: 804
884
+ David Dobas Score: 681
885
+ David Dobas Score: 874
886
+ David Dobas Score: 223
887
+ David Dobas Score: 865
888
+ David Dobas Score: 443
889
+ David Dobas Score: 434
890
+ David Dobas Score: 735
891
+ David Dobas Score: 592
892
+ David Dobas Score: 823
893
+ David Dobas Score: 334
894
+ David Dobas Score: 623
895
+ David Dobas Score: 492
896
+ David Dobas Score: 736
897
+ David Dobas Score: 566
898
+ David Dobas Score: 36
899
+ David Dobas Score: 821
900
+ David Dobas Score: 248
901
+ David Dobas Score: 431
902
+ David Dobas Score: 53
903
+ David Dobas Score: 476
904
+ David Dobas Score: 320
905
+ David Dobas Score: 489
906
+ David Dobas Score: 54
907
+ David Dobas Score: 382
908
+ David Dobas Score: 564
909
+ David Dobas Score: 493
910
+ David Dobas Score: 424
911
+ David Dobas Score: 439
912
+ David Dobas Score: 658
913
+ David Dobas Score: 601
914
+ David Dobas Score: 846
915
+ David Dobas Score: 335
916
+ David Dobas Score: 898
917
+ David Dobas Score: 243
918
+ David Dobas Score: 643
919
+ David Dobas Score: 0
920
+ David Dobas Score: 670
921
+ David Dobas Score: 891
922
+ David Dobas Score: 885
923
+ David Dobas Score: 800
924
+ David Dobas Score: 867
925
+ David Dobas Score: 685
926
+ David Dobas Score: 377
927
+ David Dobas Score: 457
928
+ David Dobas Score: 640
929
+ David Dobas Score: 821
930
+ David Dobas Score: 674
931
+ David Dobas Score: 343
932
+ David Dobas Score: 195
933
+ David Dobas Score: 343
934
+ David Dobas Score: 389
935
+ David Dobas Score: 447
936
+ David Dobas Score: 408
937
+ David Dobas Score: 552
938
+ David Dobas Score: 893
939
+ David Dobas Score: 159
940
+ David Dobas Score: 722
941
+ David Dobas Score: 774
942
+ David Dobas Score: 29
943
+ David Dobas Score: 308
944
+ David Dobas Score: 343
945
+ David Dobas Score: 219
946
+ David Dobas Score: 782
947
+ David Dobas Score: 834
948
+ David Dobas Score: 138
949
+ David Dobas Score: 321
950
+ David Dobas Score: 280
951
+ David Dobas Score: 848
952
+ David Dobas Score: 58
953
+ David Dobas Score: 659
954
+ David Dobas Score: 415
955
+ David Dobas Score: 308
956
+ David Dobas Score: 866
957
+ David Dobas Score: 318
958
+ David Dobas Score: 83
959
+ David Dobas Score: 21
960
+ David Dobas Score: 801
961
+ David Dobas Score: 624
962
+ David Dobas Score: 340
963
+ David Dobas Score: 219
964
+ David Dobas Score: 457
965
+ David Dobas Score: 637
966
+ David Dobas Score: 166
967
+ David Dobas Score: 205
968
+ David Dobas Score: 203
969
+ David Dobas Score: 432
970
+ David Dobas Score: 183
971
+ David Dobas Score: 81
972
+ David Dobas Score: 149
973
+ David Dobas Score: 602
974
+ David Dobas Score: 788
975
+ David Dobas Score: 342
976
+ David Dobas Score: 504
977
+ David Dobas Score: 170
978
+ David Dobas Score: 564
979
+ David Dobas Score: 534
980
+ David Dobas Score: 517
981
+ David Dobas Score: 684
982
+ David Dobas Score: 440
983
+ David Dobas Score: 28
984
+ David Dobas Score: 746
985
+ David Dobas Score: 207
986
+ David Dobas Score: 367
987
+ David Dobas Score: 360
988
+ David Dobas Score: 336
989
+ David Dobas Score: 749
990
+ David Dobas Score: 225
991
+ David Dobas Score: 642
992
+ David Dobas Score: 851
993
+ David Dobas Score: 604
994
+ David Dobas Score: 741
995
+ David Dobas Score: 532
996
+ David Dobas Score: 883
997
+ David Dobas Score: 306
998
+ David Dobas Score: 297
999
+ David Dobas Score: 77
1000
+ David Dobas Score: 391
1001
+ David Dobas Score: 516
1002
+ David Dobas Score: 253
1003
+ David Dobas Score: 801
1004
+ David Dobas Score: 145
1005
+ David Dobas Score: 83
1006
+ David Dobas Score: 333
1007
+ David Dobas Score: 138
1008
+ David Dobas Score: 482
1009
+ David Dobas Score: 890
1010
+ David Dobas Score: 673
1011
+ David Dobas Score: 657
1012
+ David Dobas Score: 491
1013
+ David Dobas Score: 649
1014
+ David Dobas Score: 484
1015
+ David Dobas Score: 342
1016
+ David Dobas Score: 59
1017
+ David Dobas Score: 166
1018
+ David Dobas Score: 763
1019
+ David Dobas Score: 50
1020
+ David Dobas Score: 707
1021
+ David Dobas Score: 62
1022
+ David Dobas Score: 837
1023
+ David Dobas Score: 889
1024
+ David Dobas Score: 338
1025
+ David Dobas Score: 559
1026
+ David Dobas Score: 812
1027
+ David Dobas Score: 755
1028
+ David Dobas Score: 13
1029
+ David Dobas Score: 24
1030
+ David Dobas Score: 198
1031
+ David Dobas Score: 367
1032
+ David Dobas Score: 417
1033
+ David Dobas Score: 231
1034
+ David Dobas Score: 160
1035
+ David Dobas Score: 151
1036
+ David Dobas Score: 690
1037
+ David Dobas Score: 824
1038
+ David Dobas Score: 127
1039
+ David Dobas Score: 120
1040
+ David Dobas Score: 559
1041
+ David Dobas Score: 798
1042
+ David Dobas Score: 748
1043
+ David Dobas Score: 89
1044
+ David Dobas Score: 596
1045
+ David Dobas Score: 715
1046
+ David Dobas Score: 650
1047
+ David Dobas Score: 740
1048
+ David Dobas Score: 482
1049
+ David Dobas Score: 466
1050
+ David Dobas Score: 654
1051
+ David Dobas Score: 429
1052
+ David Dobas Score: 315
1053
+ David Dobas Score: 753
1054
+ David Dobas Score: 425
1055
+ David Dobas Score: 98
1056
+ David Dobas Score: 90
1057
+ David Dobas Score: 747
1058
+ David Dobas Score: 647
1059
+ David Dobas Score: 430
1060
+ David Dobas Score: 842
1061
+ David Dobas Score: 139
1062
+ David Dobas Score: 306
1063
+ David Dobas Score: 878
1064
+ David Dobas Score: 220
1065
+ David Dobas Score: 591
1066
+ David Dobas Score: 74
1067
+ David Dobas Score: 886
1068
+ David Dobas Score: 643
1069
+ David Dobas Score: 715
1070
+ David Dobas Score: 64
1071
+ David Dobas Score: 620
1072
+ David Dobas Score: 750
1073
+ David Dobas Score: 323
1074
+ David Dobas Score: 221
1075
+ David Dobas Score: 279
1076
+ David Dobas Score: 671
1077
+ David Dobas Score: 525
1078
+ David Dobas Score: 704
1079
+ David Dobas Score: 335
1080
+ David Dobas Score: 63
1081
+ David Dobas Score: 817
1082
+ David Dobas Score: 296
1083
+ David Dobas Score: 44
1084
+ David Dobas Score: 804
1085
+ David Dobas Score: 70
1086
+ David Dobas Score: 99
1087
+ David Dobas Score: 301
1088
+ David Dobas Score: 494
1089
+ David Dobas Score: 789
1090
+ David Dobas Score: 573
1091
+ David Dobas Score: 465
1092
+ David Dobas Score: 4
1093
+ David Dobas Score: 334
1094
+ David Dobas Score: 545
1095
+ David Dobas Score: 254
1096
+ David Dobas Score: 563
1097
+ David Dobas Score: 289
1098
+ David Dobas Score: 652
1099
+ David Dobas Score: 197
1100
+ David Dobas Score: 278
1101
+ David Dobas Score: 528
1102
+ David Dobas Score: 220
1103
+ David Dobas Score: 655
1104
+ David Dobas Score: 521
1105
+ David Dobas Score: 709
1106
+ David Dobas Score: 298
1107
+ David Dobas Score: 488
1108
+ David Dobas Score: 282
1109
+ David Dobas Score: 455
1110
+ David Dobas Score: 572
1111
+ David Dobas Score: 826
1112
+ David Dobas Score: 178
1113
+ David Dobas Score: 789
1114
+ David Dobas Score: 198
1115
+ David Dobas Score: 328
1116
+ David Dobas Score: 549
1117
+ David Dobas Score: 895
1118
+ David Dobas Score: 302
1119
+ David Dobas Score: 152
1120
+ David Dobas Score: 131
1121
+ David Dobas Score: 5
1122
+ David Dobas Score: 272
1123
+ David Dobas Score: 846
1124
+ David Dobas Score: 479
1125
+ David Dobas Score: 10
1126
+ David Dobas Score: 595
1127
+ David Dobas Score: 691
1128
+ David Dobas Score: 48
1129
+ David Dobas Score: 794
1130
+ David Dobas Score: 445
1131
+ David Dobas Score: 525
1132
+ David Dobas Score: 87
1133
+ David Dobas Score: 195
1134
+ David Dobas Score: 657
1135
+ David Dobas Score: 537
1136
+ David Dobas Score: 34
1137
+ David Dobas Score: 717
1138
+ David Dobas Score: 318
1139
+ David Dobas Score: 893
1140
+ David Dobas Score: 161
1141
+ David Dobas Score: 424
1142
+ David Dobas Score: 290
1143
+ David Dobas Score: 246
1144
+ David Dobas Score: 424
1145
+ David Dobas Score: 58
1146
+ David Dobas Score: 52
1147
+ David Dobas Score: 689
1148
+ David Dobas Score: 687
1149
+ David Dobas Score: 842
1150
+ David Dobas Score: 839
1151
+ David Dobas Score: 429
1152
+ David Dobas Score: 551
1153
+ David Dobas Score: 609
1154
+ David Dobas Score: 358
1155
+ David Dobas Score: 715
1156
+ David Dobas Score: 76
1157
+ David Dobas Score: 195
1158
+ David Dobas Score: 829
1159
+ David Dobas Score: 805
1160
+ David Dobas Score: 713
1161
+ David Dobas Score: 47
1162
+ David Dobas Score: 322
1163
+ David Dobas Score: 548
1164
+ David Dobas Score: 96
1165
+ David Dobas Score: 567
1166
+ David Dobas Score: 639
1167
+ David Dobas Score: 426
1168
+ David Dobas Score: 790
1169
+ David Dobas Score: 373
1170
+ David Dobas Score: 304
1171
+ David Dobas Score: 199
1172
+ David Dobas Score: 316
1173
+ David Dobas Score: 463
1174
+ David Dobas Score: 106
1175
+ David Dobas Score: 549
1176
+ David Dobas Score: 333
1177
+ David Dobas Score: 735
1178
+ David Dobas Score: 630
1179
+ David Dobas Score: 161
1180
+ David Dobas Score: 859
1181
+ David Dobas Score: 854
1182
+ David Dobas Score: 195
1183
+ David Dobas Score: 259
1184
+ David Dobas Score: 788
1185
+ David Dobas Score: 33
1186
+ David Dobas Score: 77
1187
+ David Dobas Score: 831
1188
+ David Dobas Score: 731
1189
+ David Dobas Score: 4
1190
+ David Dobas Score: 427
1191
+ David Dobas Score: 394
1192
+ David Dobas Score: 614
1193
+ David Dobas Score: 245
1194
+ David Dobas Score: 56
1195
+ David Dobas Score: 269
1196
+ David Dobas Score: 71
1197
+ David Dobas Score: 537
1198
+ David Dobas Score: 576
1199
+ David Dobas Score: 678
1200
+ David Dobas Score: 469
1201
+ David Dobas Score: 262
1202
+ David Dobas Score: 129
1203
+ David Dobas Score: 442
1204
+ David Dobas Score: 85
1205
+ David Dobas Score: 392
1206
+ David Dobas Score: 752
1207
+ David Dobas Score: 430
1208
+ David Dobas Score: 92
1209
+ David Dobas Score: 885
1210
+ David Dobas Score: 164
1211
+ David Dobas Score: 317
1212
+ David Dobas Score: 858
1213
+ David Dobas Score: 84
1214
+ David Dobas Score: 505
1215
+ David Dobas Score: 330
1216
+ David Dobas Score: 195
1217
+ David Dobas Score: 302
1218
+ David Dobas Score: 426
1219
+ David Dobas Score: 461
1220
+ David Dobas Score: 303
1221
+ David Dobas Score: 827
1222
+ David Dobas Score: 96
1223
+ David Dobas Score: 173
1224
+ David Dobas Score: 851
1225
+ David Dobas Score: 553
1226
+ David Dobas Score: 807
1227
+ David Dobas Score: 273
1228
+ David Dobas Score: 144
1229
+ David Dobas Score: 355
1230
+ David Dobas Score: 811
1231
+ David Dobas Score: 506
1232
+ David Dobas Score: 251
1233
+ David Dobas Score: 162
1234
+ David Dobas Score: 437
1235
+ David Dobas Score: 757
1236
+ David Dobas Score: 482
1237
+ David Dobas Score: 220
1238
+ David Dobas Score: 257
1239
+ David Dobas Score: 232
1240
+ David Dobas Score: 591
1241
+ David Dobas Score: 857
1242
+ David Dobas Score: 63
1243
+ David Dobas Score: 176
1244
+ David Dobas Score: 274
1245
+ David Dobas Score: 44
1246
+ David Dobas Score: 20
1247
+ David Dobas Score: 21
1248
+ David Dobas Score: 89
1249
+ David Dobas Score: 625
1250
+ David Dobas Score: 747
1251
+ David Dobas Score: 876
1252
+ David Dobas Score: 688
1253
+ David Dobas Score: 197
1254
+ David Dobas Score: 364
1255
+ David Dobas Score: 874
1256
+ David Dobas Score: 222
1257
+ David Dobas Score: 556
1258
+ David Dobas Score: 127
1259
+ David Dobas Score: 318
1260
+ David Dobas Score: 680
1261
+ David Dobas Score: 374
1262
+ David Dobas Score: 671
1263
+ David Dobas Score: 807
1264
+ David Dobas Score: 89
1265
+ David Dobas Score: 779
1266
+ David Dobas Score: 530
1267
+ David Dobas Score: 689
1268
+ David Dobas Score: 479
1269
+ David Dobas Score: 48
1270
+ David Dobas Score: 450
1271
+ David Dobas Score: 639
1272
+ David Dobas Score: 61
1273
+ David Dobas Score: 267
1274
+ David Dobas Score: 452
1275
+ David Dobas Score: 812
1276
+ David Dobas Score: 803
1277
+ David Dobas Score: 720
1278
+ David Dobas Score: 823
1279
+ David Dobas Score: 897
1280
+ David Dobas Score: 756
1281
+ David Dobas Score: 239
1282
+ David Dobas Score: 623
1283
+ David Dobas Score: 333
1284
+ David Dobas Score: 739
1285
+ David Dobas Score: 438
1286
+ David Dobas Score: 122
1287
+ David Dobas Score: 746
1288
+ David Dobas Score: 26
1289
+ David Dobas Score: 480
1290
+ David Dobas Score: 802
1291
+ David Dobas Score: 783
1292
+ David Dobas Score: 232
1293
+ David Dobas Score: 220
1294
+ David Dobas Score: 708
1295
+ David Dobas Score: 489
1296
+ David Dobas Score: 496
1297
+ David Dobas Score: 560
1298
+ David Dobas Score: 651
1299
+ David Dobas Score: 211
1300
+ David Dobas Score: 263
1301
+ David Dobas Score: 899
1302
+ David Dobas Score: 374
1303
+ David Dobas Score: 422
1304
+ David Dobas Score: 302
1305
+ David Dobas Score: 135
1306
+ David Dobas Score: 316
1307
+ David Dobas Score: 362
1308
+ David Dobas Score: 34
1309
+ David Dobas Score: 342
1310
+ David Dobas Score: 113
1311
+ David Dobas Score: 721
1312
+ David Dobas Score: 669
1313
+ David Dobas Score: 805
1314
+ David Dobas Score: 695
1315
+ David Dobas Score: 644
1316
+ David Dobas Score: 442
1317
+ David Dobas Score: 271
1318
+ David Dobas Score: 237
1319
+ David Dobas Score: 577
1320
+ David Dobas Score: 838
1321
+ David Dobas Score: 462
1322
+ David Dobas Score: 523
1323
+ David Dobas Score: 25
1324
+ David Dobas Score: 842
1325
+ David Dobas Score: 406
1326
+ David Dobas Score: 813
1327
+ David Dobas Score: 544
1328
+ David Dobas Score: 213
1329
+ David Dobas Score: 545
1330
+ David Dobas Score: 28
1331
+ David Dobas Score: 540
1332
+ David Dobas Score: 822
1333
+ David Dobas Score: 481
1334
+ David Dobas Score: 827
1335
+ David Dobas Score: 773
1336
+ David Dobas Score: 481
1337
+ David Dobas Score: 245
1338
+ David Dobas Score: 409
1339
+ David Dobas Score: 422
1340
+ David Dobas Score: 123
1341
+ David Dobas Score: 785
1342
+ David Dobas Score: 346
1343
+ David Dobas Score: 127
1344
+ David Dobas Score: 662
1345
+ David Dobas Score: 642
1346
+ David Dobas Score: 3
1347
+ David Dobas Score: 240
1348
+ David Dobas Score: 361
1349
+ David Dobas Score: 115
1350
+ David Dobas Score: 721
1351
+ David Dobas Score: 519
1352
+ David Dobas Score: 769
1353
+ David Dobas Score: 6
1354
+ David Dobas Score: 437
1355
+ David Dobas Score: 858
1356
+ David Dobas Score: 9
1357
+ David Dobas Score: 862
1358
+ David Dobas Score: 110
1359
+ David Dobas Score: 881
1360
+ David Dobas Score: 477
1361
+ David Dobas Score: 234
1362
+ David Dobas Score: 881
1363
+ David Dobas Score: 658
1364
+ David Dobas Score: 716
1365
+ David Dobas Score: 152
1366
+ David Dobas Score: 154
1367
+ David Dobas Score: 849
1368
+ David Dobas Score: 96
1369
+ David Dobas Score: 757
1370
+ David Dobas Score: 415
1371
+ David Dobas Score: 692
1372
+ David Dobas Score: 128
1373
+ David Dobas Score: 361
1374
+ David Dobas Score: 171
1375
+ David Dobas Score: 502
1376
+ David Dobas Score: 393
1377
+ David Dobas Score: 278
1378
+ David Dobas Score: 623
1379
+ David Dobas Score: 643
1380
+ David Dobas Score: 314
1381
+ David Dobas Score: 801
1382
+ David Dobas Score: 544
1383
+ David Dobas Score: 566
1384
+ David Dobas Score: 364
1385
+ David Dobas Score: 705
1386
+ David Dobas Score: 41
1387
+ David Dobas Score: 822
1388
+ David Dobas Score: 861
1389
+ David Dobas Score: 451
1390
+ David Dobas Score: 370
1391
+ David Dobas Score: 553
1392
+ David Dobas Score: 501
1393
+ David Dobas Score: 804
1394
+ David Dobas Score: 147
1395
+ David Dobas Score: 230
1396
+ David Dobas Score: 586
1397
+ David Dobas Score: 517
1398
+ David Dobas Score: 64
1399
+ David Dobas Score: 352
1400
+ David Dobas Score: 752
1401
+ David Dobas Score: 514
1402
+ David Dobas Score: 491
1403
+ David Dobas Score: 1
1404
+ David Dobas Score: 768
1405
+ David Dobas Score: 450
1406
+ David Dobas Score: 711
1407
+ David Dobas Score: 444
1408
+ David Dobas Score: 638
1409
+ David Dobas Score: 645
1410
+ David Dobas Score: 634
1411
+ David Dobas Score: 402
1412
+ David Dobas Score: 634
1413
+ David Dobas Score: 210
package-lock.json ADDED
@@ -0,0 +1,1701 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "shyguys-wingman-js",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "shyguys-wingman-js",
9
+ "version": "1.0.0",
10
+ "dependencies": {
11
+ "dotenv": "^16.4.7",
12
+ "elevenlabs": "^1.50.4"
13
+ },
14
+ "devDependencies": {
15
+ "vite": "^6.0.11"
16
+ }
17
+ },
18
+ "node_modules/@esbuild/aix-ppc64": {
19
+ "version": "0.24.2",
20
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz",
21
+ "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==",
22
+ "cpu": [
23
+ "ppc64"
24
+ ],
25
+ "dev": true,
26
+ "license": "MIT",
27
+ "optional": true,
28
+ "os": [
29
+ "aix"
30
+ ],
31
+ "engines": {
32
+ "node": ">=18"
33
+ }
34
+ },
35
+ "node_modules/@esbuild/android-arm": {
36
+ "version": "0.24.2",
37
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz",
38
+ "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==",
39
+ "cpu": [
40
+ "arm"
41
+ ],
42
+ "dev": true,
43
+ "license": "MIT",
44
+ "optional": true,
45
+ "os": [
46
+ "android"
47
+ ],
48
+ "engines": {
49
+ "node": ">=18"
50
+ }
51
+ },
52
+ "node_modules/@esbuild/android-arm64": {
53
+ "version": "0.24.2",
54
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz",
55
+ "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==",
56
+ "cpu": [
57
+ "arm64"
58
+ ],
59
+ "dev": true,
60
+ "license": "MIT",
61
+ "optional": true,
62
+ "os": [
63
+ "android"
64
+ ],
65
+ "engines": {
66
+ "node": ">=18"
67
+ }
68
+ },
69
+ "node_modules/@esbuild/android-x64": {
70
+ "version": "0.24.2",
71
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz",
72
+ "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==",
73
+ "cpu": [
74
+ "x64"
75
+ ],
76
+ "dev": true,
77
+ "license": "MIT",
78
+ "optional": true,
79
+ "os": [
80
+ "android"
81
+ ],
82
+ "engines": {
83
+ "node": ">=18"
84
+ }
85
+ },
86
+ "node_modules/@esbuild/darwin-arm64": {
87
+ "version": "0.24.2",
88
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz",
89
+ "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==",
90
+ "cpu": [
91
+ "arm64"
92
+ ],
93
+ "dev": true,
94
+ "license": "MIT",
95
+ "optional": true,
96
+ "os": [
97
+ "darwin"
98
+ ],
99
+ "engines": {
100
+ "node": ">=18"
101
+ }
102
+ },
103
+ "node_modules/@esbuild/darwin-x64": {
104
+ "version": "0.24.2",
105
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz",
106
+ "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==",
107
+ "cpu": [
108
+ "x64"
109
+ ],
110
+ "dev": true,
111
+ "license": "MIT",
112
+ "optional": true,
113
+ "os": [
114
+ "darwin"
115
+ ],
116
+ "engines": {
117
+ "node": ">=18"
118
+ }
119
+ },
120
+ "node_modules/@esbuild/freebsd-arm64": {
121
+ "version": "0.24.2",
122
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz",
123
+ "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==",
124
+ "cpu": [
125
+ "arm64"
126
+ ],
127
+ "dev": true,
128
+ "license": "MIT",
129
+ "optional": true,
130
+ "os": [
131
+ "freebsd"
132
+ ],
133
+ "engines": {
134
+ "node": ">=18"
135
+ }
136
+ },
137
+ "node_modules/@esbuild/freebsd-x64": {
138
+ "version": "0.24.2",
139
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz",
140
+ "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==",
141
+ "cpu": [
142
+ "x64"
143
+ ],
144
+ "dev": true,
145
+ "license": "MIT",
146
+ "optional": true,
147
+ "os": [
148
+ "freebsd"
149
+ ],
150
+ "engines": {
151
+ "node": ">=18"
152
+ }
153
+ },
154
+ "node_modules/@esbuild/linux-arm": {
155
+ "version": "0.24.2",
156
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz",
157
+ "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==",
158
+ "cpu": [
159
+ "arm"
160
+ ],
161
+ "dev": true,
162
+ "license": "MIT",
163
+ "optional": true,
164
+ "os": [
165
+ "linux"
166
+ ],
167
+ "engines": {
168
+ "node": ">=18"
169
+ }
170
+ },
171
+ "node_modules/@esbuild/linux-arm64": {
172
+ "version": "0.24.2",
173
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz",
174
+ "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==",
175
+ "cpu": [
176
+ "arm64"
177
+ ],
178
+ "dev": true,
179
+ "license": "MIT",
180
+ "optional": true,
181
+ "os": [
182
+ "linux"
183
+ ],
184
+ "engines": {
185
+ "node": ">=18"
186
+ }
187
+ },
188
+ "node_modules/@esbuild/linux-ia32": {
189
+ "version": "0.24.2",
190
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz",
191
+ "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==",
192
+ "cpu": [
193
+ "ia32"
194
+ ],
195
+ "dev": true,
196
+ "license": "MIT",
197
+ "optional": true,
198
+ "os": [
199
+ "linux"
200
+ ],
201
+ "engines": {
202
+ "node": ">=18"
203
+ }
204
+ },
205
+ "node_modules/@esbuild/linux-loong64": {
206
+ "version": "0.24.2",
207
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz",
208
+ "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==",
209
+ "cpu": [
210
+ "loong64"
211
+ ],
212
+ "dev": true,
213
+ "license": "MIT",
214
+ "optional": true,
215
+ "os": [
216
+ "linux"
217
+ ],
218
+ "engines": {
219
+ "node": ">=18"
220
+ }
221
+ },
222
+ "node_modules/@esbuild/linux-mips64el": {
223
+ "version": "0.24.2",
224
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz",
225
+ "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==",
226
+ "cpu": [
227
+ "mips64el"
228
+ ],
229
+ "dev": true,
230
+ "license": "MIT",
231
+ "optional": true,
232
+ "os": [
233
+ "linux"
234
+ ],
235
+ "engines": {
236
+ "node": ">=18"
237
+ }
238
+ },
239
+ "node_modules/@esbuild/linux-ppc64": {
240
+ "version": "0.24.2",
241
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz",
242
+ "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==",
243
+ "cpu": [
244
+ "ppc64"
245
+ ],
246
+ "dev": true,
247
+ "license": "MIT",
248
+ "optional": true,
249
+ "os": [
250
+ "linux"
251
+ ],
252
+ "engines": {
253
+ "node": ">=18"
254
+ }
255
+ },
256
+ "node_modules/@esbuild/linux-riscv64": {
257
+ "version": "0.24.2",
258
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz",
259
+ "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==",
260
+ "cpu": [
261
+ "riscv64"
262
+ ],
263
+ "dev": true,
264
+ "license": "MIT",
265
+ "optional": true,
266
+ "os": [
267
+ "linux"
268
+ ],
269
+ "engines": {
270
+ "node": ">=18"
271
+ }
272
+ },
273
+ "node_modules/@esbuild/linux-s390x": {
274
+ "version": "0.24.2",
275
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz",
276
+ "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==",
277
+ "cpu": [
278
+ "s390x"
279
+ ],
280
+ "dev": true,
281
+ "license": "MIT",
282
+ "optional": true,
283
+ "os": [
284
+ "linux"
285
+ ],
286
+ "engines": {
287
+ "node": ">=18"
288
+ }
289
+ },
290
+ "node_modules/@esbuild/linux-x64": {
291
+ "version": "0.24.2",
292
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz",
293
+ "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==",
294
+ "cpu": [
295
+ "x64"
296
+ ],
297
+ "dev": true,
298
+ "license": "MIT",
299
+ "optional": true,
300
+ "os": [
301
+ "linux"
302
+ ],
303
+ "engines": {
304
+ "node": ">=18"
305
+ }
306
+ },
307
+ "node_modules/@esbuild/netbsd-arm64": {
308
+ "version": "0.24.2",
309
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz",
310
+ "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==",
311
+ "cpu": [
312
+ "arm64"
313
+ ],
314
+ "dev": true,
315
+ "license": "MIT",
316
+ "optional": true,
317
+ "os": [
318
+ "netbsd"
319
+ ],
320
+ "engines": {
321
+ "node": ">=18"
322
+ }
323
+ },
324
+ "node_modules/@esbuild/netbsd-x64": {
325
+ "version": "0.24.2",
326
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz",
327
+ "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==",
328
+ "cpu": [
329
+ "x64"
330
+ ],
331
+ "dev": true,
332
+ "license": "MIT",
333
+ "optional": true,
334
+ "os": [
335
+ "netbsd"
336
+ ],
337
+ "engines": {
338
+ "node": ">=18"
339
+ }
340
+ },
341
+ "node_modules/@esbuild/openbsd-arm64": {
342
+ "version": "0.24.2",
343
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz",
344
+ "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==",
345
+ "cpu": [
346
+ "arm64"
347
+ ],
348
+ "dev": true,
349
+ "license": "MIT",
350
+ "optional": true,
351
+ "os": [
352
+ "openbsd"
353
+ ],
354
+ "engines": {
355
+ "node": ">=18"
356
+ }
357
+ },
358
+ "node_modules/@esbuild/openbsd-x64": {
359
+ "version": "0.24.2",
360
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz",
361
+ "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==",
362
+ "cpu": [
363
+ "x64"
364
+ ],
365
+ "dev": true,
366
+ "license": "MIT",
367
+ "optional": true,
368
+ "os": [
369
+ "openbsd"
370
+ ],
371
+ "engines": {
372
+ "node": ">=18"
373
+ }
374
+ },
375
+ "node_modules/@esbuild/sunos-x64": {
376
+ "version": "0.24.2",
377
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz",
378
+ "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==",
379
+ "cpu": [
380
+ "x64"
381
+ ],
382
+ "dev": true,
383
+ "license": "MIT",
384
+ "optional": true,
385
+ "os": [
386
+ "sunos"
387
+ ],
388
+ "engines": {
389
+ "node": ">=18"
390
+ }
391
+ },
392
+ "node_modules/@esbuild/win32-arm64": {
393
+ "version": "0.24.2",
394
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz",
395
+ "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==",
396
+ "cpu": [
397
+ "arm64"
398
+ ],
399
+ "dev": true,
400
+ "license": "MIT",
401
+ "optional": true,
402
+ "os": [
403
+ "win32"
404
+ ],
405
+ "engines": {
406
+ "node": ">=18"
407
+ }
408
+ },
409
+ "node_modules/@esbuild/win32-ia32": {
410
+ "version": "0.24.2",
411
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz",
412
+ "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==",
413
+ "cpu": [
414
+ "ia32"
415
+ ],
416
+ "dev": true,
417
+ "license": "MIT",
418
+ "optional": true,
419
+ "os": [
420
+ "win32"
421
+ ],
422
+ "engines": {
423
+ "node": ">=18"
424
+ }
425
+ },
426
+ "node_modules/@esbuild/win32-x64": {
427
+ "version": "0.24.2",
428
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz",
429
+ "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==",
430
+ "cpu": [
431
+ "x64"
432
+ ],
433
+ "dev": true,
434
+ "license": "MIT",
435
+ "optional": true,
436
+ "os": [
437
+ "win32"
438
+ ],
439
+ "engines": {
440
+ "node": ">=18"
441
+ }
442
+ },
443
+ "node_modules/@rollup/rollup-android-arm-eabi": {
444
+ "version": "4.32.0",
445
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.32.0.tgz",
446
+ "integrity": "sha512-G2fUQQANtBPsNwiVFg4zKiPQyjVKZCUdQUol53R8E71J7AsheRMV/Yv/nB8giOcOVqP7//eB5xPqieBYZe9bGg==",
447
+ "cpu": [
448
+ "arm"
449
+ ],
450
+ "dev": true,
451
+ "license": "MIT",
452
+ "optional": true,
453
+ "os": [
454
+ "android"
455
+ ]
456
+ },
457
+ "node_modules/@rollup/rollup-android-arm64": {
458
+ "version": "4.32.0",
459
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.32.0.tgz",
460
+ "integrity": "sha512-qhFwQ+ljoymC+j5lXRv8DlaJYY/+8vyvYmVx074zrLsu5ZGWYsJNLjPPVJJjhZQpyAKUGPydOq9hRLLNvh1s3A==",
461
+ "cpu": [
462
+ "arm64"
463
+ ],
464
+ "dev": true,
465
+ "license": "MIT",
466
+ "optional": true,
467
+ "os": [
468
+ "android"
469
+ ]
470
+ },
471
+ "node_modules/@rollup/rollup-darwin-arm64": {
472
+ "version": "4.32.0",
473
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.32.0.tgz",
474
+ "integrity": "sha512-44n/X3lAlWsEY6vF8CzgCx+LQaoqWGN7TzUfbJDiTIOjJm4+L2Yq+r5a8ytQRGyPqgJDs3Rgyo8eVL7n9iW6AQ==",
475
+ "cpu": [
476
+ "arm64"
477
+ ],
478
+ "dev": true,
479
+ "license": "MIT",
480
+ "optional": true,
481
+ "os": [
482
+ "darwin"
483
+ ]
484
+ },
485
+ "node_modules/@rollup/rollup-darwin-x64": {
486
+ "version": "4.32.0",
487
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.32.0.tgz",
488
+ "integrity": "sha512-F9ct0+ZX5Np6+ZDztxiGCIvlCaW87HBdHcozUfsHnj1WCUTBUubAoanhHUfnUHZABlElyRikI0mgcw/qdEm2VQ==",
489
+ "cpu": [
490
+ "x64"
491
+ ],
492
+ "dev": true,
493
+ "license": "MIT",
494
+ "optional": true,
495
+ "os": [
496
+ "darwin"
497
+ ]
498
+ },
499
+ "node_modules/@rollup/rollup-freebsd-arm64": {
500
+ "version": "4.32.0",
501
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.32.0.tgz",
502
+ "integrity": "sha512-JpsGxLBB2EFXBsTLHfkZDsXSpSmKD3VxXCgBQtlPcuAqB8TlqtLcbeMhxXQkCDv1avgwNjF8uEIbq5p+Cee0PA==",
503
+ "cpu": [
504
+ "arm64"
505
+ ],
506
+ "dev": true,
507
+ "license": "MIT",
508
+ "optional": true,
509
+ "os": [
510
+ "freebsd"
511
+ ]
512
+ },
513
+ "node_modules/@rollup/rollup-freebsd-x64": {
514
+ "version": "4.32.0",
515
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.32.0.tgz",
516
+ "integrity": "sha512-wegiyBT6rawdpvnD9lmbOpx5Sph+yVZKHbhnSP9MqUEDX08G4UzMU+D87jrazGE7lRSyTRs6NEYHtzfkJ3FjjQ==",
517
+ "cpu": [
518
+ "x64"
519
+ ],
520
+ "dev": true,
521
+ "license": "MIT",
522
+ "optional": true,
523
+ "os": [
524
+ "freebsd"
525
+ ]
526
+ },
527
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
528
+ "version": "4.32.0",
529
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.32.0.tgz",
530
+ "integrity": "sha512-3pA7xecItbgOs1A5H58dDvOUEboG5UfpTq3WzAdF54acBbUM+olDJAPkgj1GRJ4ZqE12DZ9/hNS2QZk166v92A==",
531
+ "cpu": [
532
+ "arm"
533
+ ],
534
+ "dev": true,
535
+ "license": "MIT",
536
+ "optional": true,
537
+ "os": [
538
+ "linux"
539
+ ]
540
+ },
541
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
542
+ "version": "4.32.0",
543
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.32.0.tgz",
544
+ "integrity": "sha512-Y7XUZEVISGyge51QbYyYAEHwpGgmRrAxQXO3siyYo2kmaj72USSG8LtlQQgAtlGfxYiOwu+2BdbPjzEpcOpRmQ==",
545
+ "cpu": [
546
+ "arm"
547
+ ],
548
+ "dev": true,
549
+ "license": "MIT",
550
+ "optional": true,
551
+ "os": [
552
+ "linux"
553
+ ]
554
+ },
555
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
556
+ "version": "4.32.0",
557
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.32.0.tgz",
558
+ "integrity": "sha512-r7/OTF5MqeBrZo5omPXcTnjvv1GsrdH8a8RerARvDFiDwFpDVDnJyByYM/nX+mvks8XXsgPUxkwe/ltaX2VH7w==",
559
+ "cpu": [
560
+ "arm64"
561
+ ],
562
+ "dev": true,
563
+ "license": "MIT",
564
+ "optional": true,
565
+ "os": [
566
+ "linux"
567
+ ]
568
+ },
569
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
570
+ "version": "4.32.0",
571
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.32.0.tgz",
572
+ "integrity": "sha512-HJbifC9vex9NqnlodV2BHVFNuzKL5OnsV2dvTw6e1dpZKkNjPG6WUq+nhEYV6Hv2Bv++BXkwcyoGlXnPrjAKXw==",
573
+ "cpu": [
574
+ "arm64"
575
+ ],
576
+ "dev": true,
577
+ "license": "MIT",
578
+ "optional": true,
579
+ "os": [
580
+ "linux"
581
+ ]
582
+ },
583
+ "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
584
+ "version": "4.32.0",
585
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.32.0.tgz",
586
+ "integrity": "sha512-VAEzZTD63YglFlWwRj3taofmkV1V3xhebDXffon7msNz4b14xKsz7utO6F8F4cqt8K/ktTl9rm88yryvDpsfOw==",
587
+ "cpu": [
588
+ "loong64"
589
+ ],
590
+ "dev": true,
591
+ "license": "MIT",
592
+ "optional": true,
593
+ "os": [
594
+ "linux"
595
+ ]
596
+ },
597
+ "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
598
+ "version": "4.32.0",
599
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.32.0.tgz",
600
+ "integrity": "sha512-Sts5DST1jXAc9YH/iik1C9QRsLcCoOScf3dfbY5i4kH9RJpKxiTBXqm7qU5O6zTXBTEZry69bGszr3SMgYmMcQ==",
601
+ "cpu": [
602
+ "ppc64"
603
+ ],
604
+ "dev": true,
605
+ "license": "MIT",
606
+ "optional": true,
607
+ "os": [
608
+ "linux"
609
+ ]
610
+ },
611
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
612
+ "version": "4.32.0",
613
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.32.0.tgz",
614
+ "integrity": "sha512-qhlXeV9AqxIyY9/R1h1hBD6eMvQCO34ZmdYvry/K+/MBs6d1nRFLm6BOiITLVI+nFAAB9kUB6sdJRKyVHXnqZw==",
615
+ "cpu": [
616
+ "riscv64"
617
+ ],
618
+ "dev": true,
619
+ "license": "MIT",
620
+ "optional": true,
621
+ "os": [
622
+ "linux"
623
+ ]
624
+ },
625
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
626
+ "version": "4.32.0",
627
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.32.0.tgz",
628
+ "integrity": "sha512-8ZGN7ExnV0qjXa155Rsfi6H8M4iBBwNLBM9lcVS+4NcSzOFaNqmt7djlox8pN1lWrRPMRRQ8NeDlozIGx3Omsw==",
629
+ "cpu": [
630
+ "s390x"
631
+ ],
632
+ "dev": true,
633
+ "license": "MIT",
634
+ "optional": true,
635
+ "os": [
636
+ "linux"
637
+ ]
638
+ },
639
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
640
+ "version": "4.32.0",
641
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.32.0.tgz",
642
+ "integrity": "sha512-VDzNHtLLI5s7xd/VubyS10mq6TxvZBp+4NRWoW+Hi3tgV05RtVm4qK99+dClwTN1McA6PHwob6DEJ6PlXbY83A==",
643
+ "cpu": [
644
+ "x64"
645
+ ],
646
+ "dev": true,
647
+ "license": "MIT",
648
+ "optional": true,
649
+ "os": [
650
+ "linux"
651
+ ]
652
+ },
653
+ "node_modules/@rollup/rollup-linux-x64-musl": {
654
+ "version": "4.32.0",
655
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.32.0.tgz",
656
+ "integrity": "sha512-qcb9qYDlkxz9DxJo7SDhWxTWV1gFuwznjbTiov289pASxlfGbaOD54mgbs9+z94VwrXtKTu+2RqwlSTbiOqxGg==",
657
+ "cpu": [
658
+ "x64"
659
+ ],
660
+ "dev": true,
661
+ "license": "MIT",
662
+ "optional": true,
663
+ "os": [
664
+ "linux"
665
+ ]
666
+ },
667
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
668
+ "version": "4.32.0",
669
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.32.0.tgz",
670
+ "integrity": "sha512-pFDdotFDMXW2AXVbfdUEfidPAk/OtwE/Hd4eYMTNVVaCQ6Yl8et0meDaKNL63L44Haxv4UExpv9ydSf3aSayDg==",
671
+ "cpu": [
672
+ "arm64"
673
+ ],
674
+ "dev": true,
675
+ "license": "MIT",
676
+ "optional": true,
677
+ "os": [
678
+ "win32"
679
+ ]
680
+ },
681
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
682
+ "version": "4.32.0",
683
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.32.0.tgz",
684
+ "integrity": "sha512-/TG7WfrCAjeRNDvI4+0AAMoHxea/USWhAzf9PVDFHbcqrQ7hMMKp4jZIy4VEjk72AAfN5k4TiSMRXRKf/0akSw==",
685
+ "cpu": [
686
+ "ia32"
687
+ ],
688
+ "dev": true,
689
+ "license": "MIT",
690
+ "optional": true,
691
+ "os": [
692
+ "win32"
693
+ ]
694
+ },
695
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
696
+ "version": "4.32.0",
697
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.32.0.tgz",
698
+ "integrity": "sha512-5hqO5S3PTEO2E5VjCePxv40gIgyS2KvO7E7/vvC/NbIW4SIRamkMr1hqj+5Y67fbBWv/bQLB6KelBQmXlyCjWA==",
699
+ "cpu": [
700
+ "x64"
701
+ ],
702
+ "dev": true,
703
+ "license": "MIT",
704
+ "optional": true,
705
+ "os": [
706
+ "win32"
707
+ ]
708
+ },
709
+ "node_modules/@types/estree": {
710
+ "version": "1.0.6",
711
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
712
+ "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
713
+ "dev": true,
714
+ "license": "MIT"
715
+ },
716
+ "node_modules/abort-controller": {
717
+ "version": "3.0.0",
718
+ "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz",
719
+ "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
720
+ "license": "MIT",
721
+ "dependencies": {
722
+ "event-target-shim": "^5.0.0"
723
+ },
724
+ "engines": {
725
+ "node": ">=6.5"
726
+ }
727
+ },
728
+ "node_modules/asynckit": {
729
+ "version": "0.4.0",
730
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
731
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
732
+ "license": "MIT"
733
+ },
734
+ "node_modules/base64-js": {
735
+ "version": "1.5.1",
736
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
737
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
738
+ "funding": [
739
+ {
740
+ "type": "github",
741
+ "url": "https://github.com/sponsors/feross"
742
+ },
743
+ {
744
+ "type": "patreon",
745
+ "url": "https://www.patreon.com/feross"
746
+ },
747
+ {
748
+ "type": "consulting",
749
+ "url": "https://feross.org/support"
750
+ }
751
+ ],
752
+ "license": "MIT"
753
+ },
754
+ "node_modules/buffer": {
755
+ "version": "6.0.3",
756
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
757
+ "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
758
+ "funding": [
759
+ {
760
+ "type": "github",
761
+ "url": "https://github.com/sponsors/feross"
762
+ },
763
+ {
764
+ "type": "patreon",
765
+ "url": "https://www.patreon.com/feross"
766
+ },
767
+ {
768
+ "type": "consulting",
769
+ "url": "https://feross.org/support"
770
+ }
771
+ ],
772
+ "license": "MIT",
773
+ "dependencies": {
774
+ "base64-js": "^1.3.1",
775
+ "ieee754": "^1.2.1"
776
+ }
777
+ },
778
+ "node_modules/call-bind-apply-helpers": {
779
+ "version": "1.0.1",
780
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
781
+ "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
782
+ "license": "MIT",
783
+ "dependencies": {
784
+ "es-errors": "^1.3.0",
785
+ "function-bind": "^1.1.2"
786
+ },
787
+ "engines": {
788
+ "node": ">= 0.4"
789
+ }
790
+ },
791
+ "node_modules/call-bound": {
792
+ "version": "1.0.3",
793
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz",
794
+ "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==",
795
+ "license": "MIT",
796
+ "dependencies": {
797
+ "call-bind-apply-helpers": "^1.0.1",
798
+ "get-intrinsic": "^1.2.6"
799
+ },
800
+ "engines": {
801
+ "node": ">= 0.4"
802
+ },
803
+ "funding": {
804
+ "url": "https://github.com/sponsors/ljharb"
805
+ }
806
+ },
807
+ "node_modules/combined-stream": {
808
+ "version": "1.0.8",
809
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
810
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
811
+ "license": "MIT",
812
+ "dependencies": {
813
+ "delayed-stream": "~1.0.0"
814
+ },
815
+ "engines": {
816
+ "node": ">= 0.8"
817
+ }
818
+ },
819
+ "node_modules/command-exists": {
820
+ "version": "1.2.9",
821
+ "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz",
822
+ "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==",
823
+ "license": "MIT"
824
+ },
825
+ "node_modules/cross-spawn": {
826
+ "version": "7.0.6",
827
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
828
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
829
+ "license": "MIT",
830
+ "dependencies": {
831
+ "path-key": "^3.1.0",
832
+ "shebang-command": "^2.0.0",
833
+ "which": "^2.0.1"
834
+ },
835
+ "engines": {
836
+ "node": ">= 8"
837
+ }
838
+ },
839
+ "node_modules/delayed-stream": {
840
+ "version": "1.0.0",
841
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
842
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
843
+ "license": "MIT",
844
+ "engines": {
845
+ "node": ">=0.4.0"
846
+ }
847
+ },
848
+ "node_modules/dotenv": {
849
+ "version": "16.4.7",
850
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.7.tgz",
851
+ "integrity": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==",
852
+ "license": "BSD-2-Clause",
853
+ "engines": {
854
+ "node": ">=12"
855
+ },
856
+ "funding": {
857
+ "url": "https://dotenvx.com"
858
+ }
859
+ },
860
+ "node_modules/dunder-proto": {
861
+ "version": "1.0.1",
862
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
863
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
864
+ "license": "MIT",
865
+ "dependencies": {
866
+ "call-bind-apply-helpers": "^1.0.1",
867
+ "es-errors": "^1.3.0",
868
+ "gopd": "^1.2.0"
869
+ },
870
+ "engines": {
871
+ "node": ">= 0.4"
872
+ }
873
+ },
874
+ "node_modules/elevenlabs": {
875
+ "version": "1.50.4",
876
+ "resolved": "https://registry.npmjs.org/elevenlabs/-/elevenlabs-1.50.4.tgz",
877
+ "integrity": "sha512-c/g9tORpzi/5wd//2avzRvnZ0ujEKSZi3Jn6FO93gcWXHvftTuundGBwgNcIAyzZo9oRW5VlNxMYFHEZOdc1Fg==",
878
+ "license": "MIT",
879
+ "dependencies": {
880
+ "command-exists": "^1.2.9",
881
+ "execa": "^5.1.1",
882
+ "form-data": "^4.0.0",
883
+ "form-data-encoder": "^4.0.2",
884
+ "formdata-node": "^6.0.3",
885
+ "node-fetch": "2.7.0",
886
+ "qs": "6.11.2",
887
+ "readable-stream": "^4.5.2",
888
+ "url-join": "4.0.1"
889
+ }
890
+ },
891
+ "node_modules/es-define-property": {
892
+ "version": "1.0.1",
893
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
894
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
895
+ "license": "MIT",
896
+ "engines": {
897
+ "node": ">= 0.4"
898
+ }
899
+ },
900
+ "node_modules/es-errors": {
901
+ "version": "1.3.0",
902
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
903
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
904
+ "license": "MIT",
905
+ "engines": {
906
+ "node": ">= 0.4"
907
+ }
908
+ },
909
+ "node_modules/es-object-atoms": {
910
+ "version": "1.1.1",
911
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
912
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
913
+ "license": "MIT",
914
+ "dependencies": {
915
+ "es-errors": "^1.3.0"
916
+ },
917
+ "engines": {
918
+ "node": ">= 0.4"
919
+ }
920
+ },
921
+ "node_modules/esbuild": {
922
+ "version": "0.24.2",
923
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz",
924
+ "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==",
925
+ "dev": true,
926
+ "hasInstallScript": true,
927
+ "license": "MIT",
928
+ "bin": {
929
+ "esbuild": "bin/esbuild"
930
+ },
931
+ "engines": {
932
+ "node": ">=18"
933
+ },
934
+ "optionalDependencies": {
935
+ "@esbuild/aix-ppc64": "0.24.2",
936
+ "@esbuild/android-arm": "0.24.2",
937
+ "@esbuild/android-arm64": "0.24.2",
938
+ "@esbuild/android-x64": "0.24.2",
939
+ "@esbuild/darwin-arm64": "0.24.2",
940
+ "@esbuild/darwin-x64": "0.24.2",
941
+ "@esbuild/freebsd-arm64": "0.24.2",
942
+ "@esbuild/freebsd-x64": "0.24.2",
943
+ "@esbuild/linux-arm": "0.24.2",
944
+ "@esbuild/linux-arm64": "0.24.2",
945
+ "@esbuild/linux-ia32": "0.24.2",
946
+ "@esbuild/linux-loong64": "0.24.2",
947
+ "@esbuild/linux-mips64el": "0.24.2",
948
+ "@esbuild/linux-ppc64": "0.24.2",
949
+ "@esbuild/linux-riscv64": "0.24.2",
950
+ "@esbuild/linux-s390x": "0.24.2",
951
+ "@esbuild/linux-x64": "0.24.2",
952
+ "@esbuild/netbsd-arm64": "0.24.2",
953
+ "@esbuild/netbsd-x64": "0.24.2",
954
+ "@esbuild/openbsd-arm64": "0.24.2",
955
+ "@esbuild/openbsd-x64": "0.24.2",
956
+ "@esbuild/sunos-x64": "0.24.2",
957
+ "@esbuild/win32-arm64": "0.24.2",
958
+ "@esbuild/win32-ia32": "0.24.2",
959
+ "@esbuild/win32-x64": "0.24.2"
960
+ }
961
+ },
962
+ "node_modules/event-target-shim": {
963
+ "version": "5.0.1",
964
+ "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
965
+ "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
966
+ "license": "MIT",
967
+ "engines": {
968
+ "node": ">=6"
969
+ }
970
+ },
971
+ "node_modules/events": {
972
+ "version": "3.3.0",
973
+ "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
974
+ "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
975
+ "license": "MIT",
976
+ "engines": {
977
+ "node": ">=0.8.x"
978
+ }
979
+ },
980
+ "node_modules/execa": {
981
+ "version": "5.1.1",
982
+ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
983
+ "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
984
+ "license": "MIT",
985
+ "dependencies": {
986
+ "cross-spawn": "^7.0.3",
987
+ "get-stream": "^6.0.0",
988
+ "human-signals": "^2.1.0",
989
+ "is-stream": "^2.0.0",
990
+ "merge-stream": "^2.0.0",
991
+ "npm-run-path": "^4.0.1",
992
+ "onetime": "^5.1.2",
993
+ "signal-exit": "^3.0.3",
994
+ "strip-final-newline": "^2.0.0"
995
+ },
996
+ "engines": {
997
+ "node": ">=10"
998
+ },
999
+ "funding": {
1000
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
1001
+ }
1002
+ },
1003
+ "node_modules/form-data": {
1004
+ "version": "4.0.1",
1005
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz",
1006
+ "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==",
1007
+ "license": "MIT",
1008
+ "dependencies": {
1009
+ "asynckit": "^0.4.0",
1010
+ "combined-stream": "^1.0.8",
1011
+ "mime-types": "^2.1.12"
1012
+ },
1013
+ "engines": {
1014
+ "node": ">= 6"
1015
+ }
1016
+ },
1017
+ "node_modules/form-data-encoder": {
1018
+ "version": "4.0.2",
1019
+ "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-4.0.2.tgz",
1020
+ "integrity": "sha512-KQVhvhK8ZkWzxKxOr56CPulAhH3dobtuQ4+hNQ+HekH/Wp5gSOafqRAeTphQUJAIk0GBvHZgJ2ZGRWd5kphMuw==",
1021
+ "license": "MIT",
1022
+ "engines": {
1023
+ "node": ">= 18"
1024
+ }
1025
+ },
1026
+ "node_modules/formdata-node": {
1027
+ "version": "6.0.3",
1028
+ "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-6.0.3.tgz",
1029
+ "integrity": "sha512-8e1++BCiTzUno9v5IZ2J6bv4RU+3UKDmqWUQD0MIMVCd9AdhWkO1gw57oo1mNEX1dMq2EGI+FbWz4B92pscSQg==",
1030
+ "license": "MIT",
1031
+ "engines": {
1032
+ "node": ">= 18"
1033
+ }
1034
+ },
1035
+ "node_modules/fsevents": {
1036
+ "version": "2.3.3",
1037
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1038
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1039
+ "dev": true,
1040
+ "hasInstallScript": true,
1041
+ "license": "MIT",
1042
+ "optional": true,
1043
+ "os": [
1044
+ "darwin"
1045
+ ],
1046
+ "engines": {
1047
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1048
+ }
1049
+ },
1050
+ "node_modules/function-bind": {
1051
+ "version": "1.1.2",
1052
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
1053
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
1054
+ "license": "MIT",
1055
+ "funding": {
1056
+ "url": "https://github.com/sponsors/ljharb"
1057
+ }
1058
+ },
1059
+ "node_modules/get-intrinsic": {
1060
+ "version": "1.2.7",
1061
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz",
1062
+ "integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==",
1063
+ "license": "MIT",
1064
+ "dependencies": {
1065
+ "call-bind-apply-helpers": "^1.0.1",
1066
+ "es-define-property": "^1.0.1",
1067
+ "es-errors": "^1.3.0",
1068
+ "es-object-atoms": "^1.0.0",
1069
+ "function-bind": "^1.1.2",
1070
+ "get-proto": "^1.0.0",
1071
+ "gopd": "^1.2.0",
1072
+ "has-symbols": "^1.1.0",
1073
+ "hasown": "^2.0.2",
1074
+ "math-intrinsics": "^1.1.0"
1075
+ },
1076
+ "engines": {
1077
+ "node": ">= 0.4"
1078
+ },
1079
+ "funding": {
1080
+ "url": "https://github.com/sponsors/ljharb"
1081
+ }
1082
+ },
1083
+ "node_modules/get-proto": {
1084
+ "version": "1.0.1",
1085
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
1086
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
1087
+ "license": "MIT",
1088
+ "dependencies": {
1089
+ "dunder-proto": "^1.0.1",
1090
+ "es-object-atoms": "^1.0.0"
1091
+ },
1092
+ "engines": {
1093
+ "node": ">= 0.4"
1094
+ }
1095
+ },
1096
+ "node_modules/get-stream": {
1097
+ "version": "6.0.1",
1098
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
1099
+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
1100
+ "license": "MIT",
1101
+ "engines": {
1102
+ "node": ">=10"
1103
+ },
1104
+ "funding": {
1105
+ "url": "https://github.com/sponsors/sindresorhus"
1106
+ }
1107
+ },
1108
+ "node_modules/gopd": {
1109
+ "version": "1.2.0",
1110
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
1111
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
1112
+ "license": "MIT",
1113
+ "engines": {
1114
+ "node": ">= 0.4"
1115
+ },
1116
+ "funding": {
1117
+ "url": "https://github.com/sponsors/ljharb"
1118
+ }
1119
+ },
1120
+ "node_modules/has-symbols": {
1121
+ "version": "1.1.0",
1122
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
1123
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
1124
+ "license": "MIT",
1125
+ "engines": {
1126
+ "node": ">= 0.4"
1127
+ },
1128
+ "funding": {
1129
+ "url": "https://github.com/sponsors/ljharb"
1130
+ }
1131
+ },
1132
+ "node_modules/hasown": {
1133
+ "version": "2.0.2",
1134
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
1135
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
1136
+ "license": "MIT",
1137
+ "dependencies": {
1138
+ "function-bind": "^1.1.2"
1139
+ },
1140
+ "engines": {
1141
+ "node": ">= 0.4"
1142
+ }
1143
+ },
1144
+ "node_modules/human-signals": {
1145
+ "version": "2.1.0",
1146
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
1147
+ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
1148
+ "license": "Apache-2.0",
1149
+ "engines": {
1150
+ "node": ">=10.17.0"
1151
+ }
1152
+ },
1153
+ "node_modules/ieee754": {
1154
+ "version": "1.2.1",
1155
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
1156
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
1157
+ "funding": [
1158
+ {
1159
+ "type": "github",
1160
+ "url": "https://github.com/sponsors/feross"
1161
+ },
1162
+ {
1163
+ "type": "patreon",
1164
+ "url": "https://www.patreon.com/feross"
1165
+ },
1166
+ {
1167
+ "type": "consulting",
1168
+ "url": "https://feross.org/support"
1169
+ }
1170
+ ],
1171
+ "license": "BSD-3-Clause"
1172
+ },
1173
+ "node_modules/is-stream": {
1174
+ "version": "2.0.1",
1175
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
1176
+ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
1177
+ "license": "MIT",
1178
+ "engines": {
1179
+ "node": ">=8"
1180
+ },
1181
+ "funding": {
1182
+ "url": "https://github.com/sponsors/sindresorhus"
1183
+ }
1184
+ },
1185
+ "node_modules/isexe": {
1186
+ "version": "2.0.0",
1187
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1188
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
1189
+ "license": "ISC"
1190
+ },
1191
+ "node_modules/math-intrinsics": {
1192
+ "version": "1.1.0",
1193
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
1194
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
1195
+ "license": "MIT",
1196
+ "engines": {
1197
+ "node": ">= 0.4"
1198
+ }
1199
+ },
1200
+ "node_modules/merge-stream": {
1201
+ "version": "2.0.0",
1202
+ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
1203
+ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
1204
+ "license": "MIT"
1205
+ },
1206
+ "node_modules/mime-db": {
1207
+ "version": "1.52.0",
1208
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
1209
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
1210
+ "license": "MIT",
1211
+ "engines": {
1212
+ "node": ">= 0.6"
1213
+ }
1214
+ },
1215
+ "node_modules/mime-types": {
1216
+ "version": "2.1.35",
1217
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
1218
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
1219
+ "license": "MIT",
1220
+ "dependencies": {
1221
+ "mime-db": "1.52.0"
1222
+ },
1223
+ "engines": {
1224
+ "node": ">= 0.6"
1225
+ }
1226
+ },
1227
+ "node_modules/mimic-fn": {
1228
+ "version": "2.1.0",
1229
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
1230
+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
1231
+ "license": "MIT",
1232
+ "engines": {
1233
+ "node": ">=6"
1234
+ }
1235
+ },
1236
+ "node_modules/nanoid": {
1237
+ "version": "3.3.8",
1238
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
1239
+ "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
1240
+ "dev": true,
1241
+ "funding": [
1242
+ {
1243
+ "type": "github",
1244
+ "url": "https://github.com/sponsors/ai"
1245
+ }
1246
+ ],
1247
+ "license": "MIT",
1248
+ "bin": {
1249
+ "nanoid": "bin/nanoid.cjs"
1250
+ },
1251
+ "engines": {
1252
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
1253
+ }
1254
+ },
1255
+ "node_modules/node-fetch": {
1256
+ "version": "2.7.0",
1257
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
1258
+ "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
1259
+ "license": "MIT",
1260
+ "dependencies": {
1261
+ "whatwg-url": "^5.0.0"
1262
+ },
1263
+ "engines": {
1264
+ "node": "4.x || >=6.0.0"
1265
+ },
1266
+ "peerDependencies": {
1267
+ "encoding": "^0.1.0"
1268
+ },
1269
+ "peerDependenciesMeta": {
1270
+ "encoding": {
1271
+ "optional": true
1272
+ }
1273
+ }
1274
+ },
1275
+ "node_modules/npm-run-path": {
1276
+ "version": "4.0.1",
1277
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
1278
+ "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
1279
+ "license": "MIT",
1280
+ "dependencies": {
1281
+ "path-key": "^3.0.0"
1282
+ },
1283
+ "engines": {
1284
+ "node": ">=8"
1285
+ }
1286
+ },
1287
+ "node_modules/object-inspect": {
1288
+ "version": "1.13.3",
1289
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz",
1290
+ "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==",
1291
+ "license": "MIT",
1292
+ "engines": {
1293
+ "node": ">= 0.4"
1294
+ },
1295
+ "funding": {
1296
+ "url": "https://github.com/sponsors/ljharb"
1297
+ }
1298
+ },
1299
+ "node_modules/onetime": {
1300
+ "version": "5.1.2",
1301
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
1302
+ "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
1303
+ "license": "MIT",
1304
+ "dependencies": {
1305
+ "mimic-fn": "^2.1.0"
1306
+ },
1307
+ "engines": {
1308
+ "node": ">=6"
1309
+ },
1310
+ "funding": {
1311
+ "url": "https://github.com/sponsors/sindresorhus"
1312
+ }
1313
+ },
1314
+ "node_modules/path-key": {
1315
+ "version": "3.1.1",
1316
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
1317
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
1318
+ "license": "MIT",
1319
+ "engines": {
1320
+ "node": ">=8"
1321
+ }
1322
+ },
1323
+ "node_modules/picocolors": {
1324
+ "version": "1.1.1",
1325
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
1326
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
1327
+ "dev": true,
1328
+ "license": "ISC"
1329
+ },
1330
+ "node_modules/postcss": {
1331
+ "version": "8.5.1",
1332
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.1.tgz",
1333
+ "integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==",
1334
+ "dev": true,
1335
+ "funding": [
1336
+ {
1337
+ "type": "opencollective",
1338
+ "url": "https://opencollective.com/postcss/"
1339
+ },
1340
+ {
1341
+ "type": "tidelift",
1342
+ "url": "https://tidelift.com/funding/github/npm/postcss"
1343
+ },
1344
+ {
1345
+ "type": "github",
1346
+ "url": "https://github.com/sponsors/ai"
1347
+ }
1348
+ ],
1349
+ "license": "MIT",
1350
+ "dependencies": {
1351
+ "nanoid": "^3.3.8",
1352
+ "picocolors": "^1.1.1",
1353
+ "source-map-js": "^1.2.1"
1354
+ },
1355
+ "engines": {
1356
+ "node": "^10 || ^12 || >=14"
1357
+ }
1358
+ },
1359
+ "node_modules/process": {
1360
+ "version": "0.11.10",
1361
+ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
1362
+ "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
1363
+ "license": "MIT",
1364
+ "engines": {
1365
+ "node": ">= 0.6.0"
1366
+ }
1367
+ },
1368
+ "node_modules/qs": {
1369
+ "version": "6.11.2",
1370
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz",
1371
+ "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==",
1372
+ "license": "BSD-3-Clause",
1373
+ "dependencies": {
1374
+ "side-channel": "^1.0.4"
1375
+ },
1376
+ "engines": {
1377
+ "node": ">=0.6"
1378
+ },
1379
+ "funding": {
1380
+ "url": "https://github.com/sponsors/ljharb"
1381
+ }
1382
+ },
1383
+ "node_modules/readable-stream": {
1384
+ "version": "4.7.0",
1385
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz",
1386
+ "integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==",
1387
+ "license": "MIT",
1388
+ "dependencies": {
1389
+ "abort-controller": "^3.0.0",
1390
+ "buffer": "^6.0.3",
1391
+ "events": "^3.3.0",
1392
+ "process": "^0.11.10",
1393
+ "string_decoder": "^1.3.0"
1394
+ },
1395
+ "engines": {
1396
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1397
+ }
1398
+ },
1399
+ "node_modules/rollup": {
1400
+ "version": "4.32.0",
1401
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.32.0.tgz",
1402
+ "integrity": "sha512-JmrhfQR31Q4AuNBjjAX4s+a/Pu/Q8Q9iwjWBsjRH1q52SPFE2NqRMK6fUZKKnvKO6id+h7JIRf0oYsph53eATg==",
1403
+ "dev": true,
1404
+ "license": "MIT",
1405
+ "dependencies": {
1406
+ "@types/estree": "1.0.6"
1407
+ },
1408
+ "bin": {
1409
+ "rollup": "dist/bin/rollup"
1410
+ },
1411
+ "engines": {
1412
+ "node": ">=18.0.0",
1413
+ "npm": ">=8.0.0"
1414
+ },
1415
+ "optionalDependencies": {
1416
+ "@rollup/rollup-android-arm-eabi": "4.32.0",
1417
+ "@rollup/rollup-android-arm64": "4.32.0",
1418
+ "@rollup/rollup-darwin-arm64": "4.32.0",
1419
+ "@rollup/rollup-darwin-x64": "4.32.0",
1420
+ "@rollup/rollup-freebsd-arm64": "4.32.0",
1421
+ "@rollup/rollup-freebsd-x64": "4.32.0",
1422
+ "@rollup/rollup-linux-arm-gnueabihf": "4.32.0",
1423
+ "@rollup/rollup-linux-arm-musleabihf": "4.32.0",
1424
+ "@rollup/rollup-linux-arm64-gnu": "4.32.0",
1425
+ "@rollup/rollup-linux-arm64-musl": "4.32.0",
1426
+ "@rollup/rollup-linux-loongarch64-gnu": "4.32.0",
1427
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.32.0",
1428
+ "@rollup/rollup-linux-riscv64-gnu": "4.32.0",
1429
+ "@rollup/rollup-linux-s390x-gnu": "4.32.0",
1430
+ "@rollup/rollup-linux-x64-gnu": "4.32.0",
1431
+ "@rollup/rollup-linux-x64-musl": "4.32.0",
1432
+ "@rollup/rollup-win32-arm64-msvc": "4.32.0",
1433
+ "@rollup/rollup-win32-ia32-msvc": "4.32.0",
1434
+ "@rollup/rollup-win32-x64-msvc": "4.32.0",
1435
+ "fsevents": "~2.3.2"
1436
+ }
1437
+ },
1438
+ "node_modules/safe-buffer": {
1439
+ "version": "5.2.1",
1440
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
1441
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
1442
+ "funding": [
1443
+ {
1444
+ "type": "github",
1445
+ "url": "https://github.com/sponsors/feross"
1446
+ },
1447
+ {
1448
+ "type": "patreon",
1449
+ "url": "https://www.patreon.com/feross"
1450
+ },
1451
+ {
1452
+ "type": "consulting",
1453
+ "url": "https://feross.org/support"
1454
+ }
1455
+ ],
1456
+ "license": "MIT"
1457
+ },
1458
+ "node_modules/shebang-command": {
1459
+ "version": "2.0.0",
1460
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
1461
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
1462
+ "license": "MIT",
1463
+ "dependencies": {
1464
+ "shebang-regex": "^3.0.0"
1465
+ },
1466
+ "engines": {
1467
+ "node": ">=8"
1468
+ }
1469
+ },
1470
+ "node_modules/shebang-regex": {
1471
+ "version": "3.0.0",
1472
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
1473
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
1474
+ "license": "MIT",
1475
+ "engines": {
1476
+ "node": ">=8"
1477
+ }
1478
+ },
1479
+ "node_modules/side-channel": {
1480
+ "version": "1.1.0",
1481
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
1482
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
1483
+ "license": "MIT",
1484
+ "dependencies": {
1485
+ "es-errors": "^1.3.0",
1486
+ "object-inspect": "^1.13.3",
1487
+ "side-channel-list": "^1.0.0",
1488
+ "side-channel-map": "^1.0.1",
1489
+ "side-channel-weakmap": "^1.0.2"
1490
+ },
1491
+ "engines": {
1492
+ "node": ">= 0.4"
1493
+ },
1494
+ "funding": {
1495
+ "url": "https://github.com/sponsors/ljharb"
1496
+ }
1497
+ },
1498
+ "node_modules/side-channel-list": {
1499
+ "version": "1.0.0",
1500
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
1501
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
1502
+ "license": "MIT",
1503
+ "dependencies": {
1504
+ "es-errors": "^1.3.0",
1505
+ "object-inspect": "^1.13.3"
1506
+ },
1507
+ "engines": {
1508
+ "node": ">= 0.4"
1509
+ },
1510
+ "funding": {
1511
+ "url": "https://github.com/sponsors/ljharb"
1512
+ }
1513
+ },
1514
+ "node_modules/side-channel-map": {
1515
+ "version": "1.0.1",
1516
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
1517
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
1518
+ "license": "MIT",
1519
+ "dependencies": {
1520
+ "call-bound": "^1.0.2",
1521
+ "es-errors": "^1.3.0",
1522
+ "get-intrinsic": "^1.2.5",
1523
+ "object-inspect": "^1.13.3"
1524
+ },
1525
+ "engines": {
1526
+ "node": ">= 0.4"
1527
+ },
1528
+ "funding": {
1529
+ "url": "https://github.com/sponsors/ljharb"
1530
+ }
1531
+ },
1532
+ "node_modules/side-channel-weakmap": {
1533
+ "version": "1.0.2",
1534
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
1535
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
1536
+ "license": "MIT",
1537
+ "dependencies": {
1538
+ "call-bound": "^1.0.2",
1539
+ "es-errors": "^1.3.0",
1540
+ "get-intrinsic": "^1.2.5",
1541
+ "object-inspect": "^1.13.3",
1542
+ "side-channel-map": "^1.0.1"
1543
+ },
1544
+ "engines": {
1545
+ "node": ">= 0.4"
1546
+ },
1547
+ "funding": {
1548
+ "url": "https://github.com/sponsors/ljharb"
1549
+ }
1550
+ },
1551
+ "node_modules/signal-exit": {
1552
+ "version": "3.0.7",
1553
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
1554
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
1555
+ "license": "ISC"
1556
+ },
1557
+ "node_modules/source-map-js": {
1558
+ "version": "1.2.1",
1559
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
1560
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
1561
+ "dev": true,
1562
+ "license": "BSD-3-Clause",
1563
+ "engines": {
1564
+ "node": ">=0.10.0"
1565
+ }
1566
+ },
1567
+ "node_modules/string_decoder": {
1568
+ "version": "1.3.0",
1569
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
1570
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
1571
+ "license": "MIT",
1572
+ "dependencies": {
1573
+ "safe-buffer": "~5.2.0"
1574
+ }
1575
+ },
1576
+ "node_modules/strip-final-newline": {
1577
+ "version": "2.0.0",
1578
+ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
1579
+ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
1580
+ "license": "MIT",
1581
+ "engines": {
1582
+ "node": ">=6"
1583
+ }
1584
+ },
1585
+ "node_modules/tr46": {
1586
+ "version": "0.0.3",
1587
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
1588
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
1589
+ "license": "MIT"
1590
+ },
1591
+ "node_modules/url-join": {
1592
+ "version": "4.0.1",
1593
+ "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz",
1594
+ "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==",
1595
+ "license": "MIT"
1596
+ },
1597
+ "node_modules/vite": {
1598
+ "version": "6.0.11",
1599
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.0.11.tgz",
1600
+ "integrity": "sha512-4VL9mQPKoHy4+FE0NnRE/kbY51TOfaknxAjt3fJbGJxhIpBZiqVzlZDEesWWsuREXHwNdAoOFZ9MkPEVXczHwg==",
1601
+ "dev": true,
1602
+ "license": "MIT",
1603
+ "dependencies": {
1604
+ "esbuild": "^0.24.2",
1605
+ "postcss": "^8.4.49",
1606
+ "rollup": "^4.23.0"
1607
+ },
1608
+ "bin": {
1609
+ "vite": "bin/vite.js"
1610
+ },
1611
+ "engines": {
1612
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
1613
+ },
1614
+ "funding": {
1615
+ "url": "https://github.com/vitejs/vite?sponsor=1"
1616
+ },
1617
+ "optionalDependencies": {
1618
+ "fsevents": "~2.3.3"
1619
+ },
1620
+ "peerDependencies": {
1621
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
1622
+ "jiti": ">=1.21.0",
1623
+ "less": "*",
1624
+ "lightningcss": "^1.21.0",
1625
+ "sass": "*",
1626
+ "sass-embedded": "*",
1627
+ "stylus": "*",
1628
+ "sugarss": "*",
1629
+ "terser": "^5.16.0",
1630
+ "tsx": "^4.8.1",
1631
+ "yaml": "^2.4.2"
1632
+ },
1633
+ "peerDependenciesMeta": {
1634
+ "@types/node": {
1635
+ "optional": true
1636
+ },
1637
+ "jiti": {
1638
+ "optional": true
1639
+ },
1640
+ "less": {
1641
+ "optional": true
1642
+ },
1643
+ "lightningcss": {
1644
+ "optional": true
1645
+ },
1646
+ "sass": {
1647
+ "optional": true
1648
+ },
1649
+ "sass-embedded": {
1650
+ "optional": true
1651
+ },
1652
+ "stylus": {
1653
+ "optional": true
1654
+ },
1655
+ "sugarss": {
1656
+ "optional": true
1657
+ },
1658
+ "terser": {
1659
+ "optional": true
1660
+ },
1661
+ "tsx": {
1662
+ "optional": true
1663
+ },
1664
+ "yaml": {
1665
+ "optional": true
1666
+ }
1667
+ }
1668
+ },
1669
+ "node_modules/webidl-conversions": {
1670
+ "version": "3.0.1",
1671
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
1672
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
1673
+ "license": "BSD-2-Clause"
1674
+ },
1675
+ "node_modules/whatwg-url": {
1676
+ "version": "5.0.0",
1677
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
1678
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
1679
+ "license": "MIT",
1680
+ "dependencies": {
1681
+ "tr46": "~0.0.3",
1682
+ "webidl-conversions": "^3.0.0"
1683
+ }
1684
+ },
1685
+ "node_modules/which": {
1686
+ "version": "2.0.2",
1687
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
1688
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
1689
+ "license": "ISC",
1690
+ "dependencies": {
1691
+ "isexe": "^2.0.0"
1692
+ },
1693
+ "bin": {
1694
+ "node-which": "bin/node-which"
1695
+ },
1696
+ "engines": {
1697
+ "node": ">= 8"
1698
+ }
1699
+ }
1700
+ }
1701
+ }
package.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "shyguys-wingman-js",
3
+ "version": "1.0.0",
4
+ "description": "ShyguysWingmanJS project",
5
+ "main": "src/index.js",
6
+ "scripts": {
7
+ "dev": "vite",
8
+ "build": "vite build",
9
+ "preview": "vite preview"
10
+ },
11
+ "dependencies": {
12
+ "dotenv": "^16.4.7",
13
+ "elevenlabs": "^1.50.4"
14
+ },
15
+ "devDependencies": {
16
+ "vite": "^6.0.11"
17
+ }
18
+ }
replace.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ vvO2N5PA9dj8cO6BwcIB8oH4YRnQI3Tn==your_actual_api_key_1
2
+ sk_62d0fc2ccddb1a4036f624dd8c411383fd9b9990755ea086==your_actual_api_key_2
vite.config.js ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import dotenv from "dotenv";
2
+ dotenv.config();
3
+
4
+ export default {
5
+ define: {
6
+ "process.env": process.env,
7
+ },
8
+ server: {
9
+ open: true,
10
+ allowedHosts: ["mistral-ai-game-jam-shyguys-2.hf.space"],
11
+ },
12
+ };