algorembrant commited on
Commit
6aea600
·
verified ·
1 Parent(s): ca1038d

Upload 335 files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
1C_patterns.md ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Complete 1-Candle Patterns
2
+
3
+ Based on the core definitions, here are all the possible configurations for a single 1-candle pattern (Bullish and Bearish).
4
+
5
+ ## Bullish Patterns (C > O)
6
+
7
+ ### Bull_1
8
+ - **Definition**: High > Close > Open > Low. A standard bullish candle with both an upper and lower shadow (wick).
9
+ - **Logic**:
10
+ ```text
11
+ H > C & O & L
12
+ C > O & L
13
+ O > L
14
+ ```
15
+
16
+ ### Bull_2
17
+ - **Definition**: Close = High > Open > Low. A bullish candle that closes precisely at its highest price, indicating strong upward momentum into the close (no upper wick).
18
+ - **Logic**:
19
+ ```text
20
+ (C = H) > O & L
21
+ C > O & L
22
+ O > L
23
+ ```
24
+
25
+ ### Bull_3
26
+ - **Definition**: High > Close > Open = Low. A bullish candle that opened at its absolute lowest point, showing buyers dominated continually from the very beginning (no lower wick).
27
+ - **Logic**:
28
+ ```text
29
+ H > C & O & L
30
+ C > O & L
31
+ O = L
32
+ ```
33
+
34
+ ### Bull_4
35
+ - **Definition**: (Close = High) > (Open = Low). A perfectly strong "Marubozu" bullish candle that opened at its low and closed perfectly at its high, without wicks.
36
+ - **Logic**:
37
+ ```text
38
+ (C = H) > O & L
39
+ C > O & L
40
+ O = L
41
+ ```
42
+
43
+ ---
44
+
45
+ ## Bearish Patterns (C < O)
46
+
47
+ ### Bear_1
48
+ - **Definition**: High > Open > Close > Low. A standard bearish candle where the price varied heavily but ended below where it opened.
49
+ - **Logic**:
50
+ ```text
51
+ L < C & O & H
52
+ C < O & H
53
+ O < H
54
+ ```
55
+
56
+ ### Bear_2
57
+ - **Definition**: High > Open > Close = Low. A bearish candle that closes exactly at its lowest point, showing selling pressure all the way through the end of the session (no lower wick).
58
+ - **Logic**:
59
+ ```text
60
+ (C = L) < O & H
61
+ C < O & H
62
+ O < H
63
+ ```
64
+
65
+ ### Bear_3
66
+ - **Definition**: High = Open > Close > Low. A bearish candle that opens precisely at its high, suggesting selling pressure began instantly, producing no upper wick.
67
+ - **Logic**:
68
+ ```text
69
+ L < C & O & H
70
+ C < O & H
71
+ O = H
72
+ ```
73
+
74
+ ### Bear_4
75
+ - **Definition**: (Open = High) > (Close = Low). A perfectly strong bearish "Marubozu" candle opening at its absolute high and closing at its absolute low, showing maximal bearish momentum and no wicks.
76
+ - **Logic**:
77
+ ```text
78
+ (C = L) < O & H
79
+ C < O & H
80
+ O = H
81
+ ```
2C_patterns.md ADDED
The diff for this file is too large to render. See raw diff
 
generate_graphs.py ADDED
@@ -0,0 +1,276 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import matplotlib.pyplot as plt
3
+ import matplotlib.patches as patches
4
+ import math
5
+
6
+ os.makedirs('images', exist_ok=True)
7
+
8
+ candle_types = [
9
+ 'Bull_1', 'Bull_2', 'Bull_3', 'Bull_4',
10
+ 'Bear_1', 'Bear_2', 'Bear_3', 'Bear_4',
11
+ 'Doji_1', 'Doji_2', 'Doji_3', 'Doji_4'
12
+ ]
13
+
14
+ alignments = [
15
+ 'GAP_UP', 'GAP_DOWN', 'ENGULFING', 'HARAMI',
16
+ 'OVERLAP_UPPER', 'OVERLAP_LOWER', 'PIERCING_CLOUD',
17
+ 'EQUAL_OPEN', 'OPEN_EQUALS_HIGH', 'OPEN_EQUALS_LOW', 'CONTINUATION',
18
+ 'CLOSE_EQUALS_OPEN', 'CLOSE_EQUALS_HIGH', 'CLOSE_EQUALS_LOW', 'MEETING_LINES',
19
+ 'HIGH_EQUALS_OPEN', 'EQUAL_HIGH', 'HIGH_EQUALS_LOW', 'HIGH_EQUALS_CLOSE',
20
+ 'LOW_EQUALS_OPEN', 'LOW_EQUALS_HIGH', 'EQUAL_LOW', 'LOW_EQUALS_CLOSE'
21
+ ]
22
+
23
+ def get_base_candle(c_type, base_y=50.0, body_size=10.0, wick_size=5.0):
24
+ half_body = body_size / 2.0
25
+ top_body = base_y + half_body
26
+ bot_body = base_y - half_body
27
+
28
+ if c_type == 'Bull_1': # H > C > O > L
29
+ return (bot_body, top_body + wick_size, bot_body - wick_size, top_body)
30
+ elif c_type == 'Bull_2': # C=H > O > L
31
+ return (bot_body, top_body, bot_body - wick_size, top_body)
32
+ elif c_type == 'Bull_3': # H > C > O=L
33
+ return (bot_body, top_body + wick_size, bot_body, top_body)
34
+ elif c_type == 'Bull_4': # C=H > O=L
35
+ return (bot_body, top_body, bot_body, top_body)
36
+ elif c_type == 'Bear_1': # H > O > C > L
37
+ return (top_body, top_body + wick_size, bot_body - wick_size, bot_body)
38
+ elif c_type == 'Bear_2': # H > O > C=L
39
+ return (top_body, top_body + wick_size, bot_body, bot_body)
40
+ elif c_type == 'Bear_3': # H=O > C > L
41
+ return (top_body, top_body, bot_body - wick_size, bot_body)
42
+ elif c_type == 'Bear_4': # H=O > C=L
43
+ return (top_body, top_body, bot_body, bot_body)
44
+ elif c_type == 'Doji_1':
45
+ return (base_y, base_y + wick_size + half_body, base_y - wick_size - half_body, base_y)
46
+ elif c_type == 'Doji_2':
47
+ return (base_y, base_y, base_y - wick_size - half_body, base_y)
48
+ elif c_type == 'Doji_3':
49
+ return (base_y, base_y + wick_size + half_body, base_y, base_y)
50
+ elif c_type == 'Doji_4':
51
+ return (base_y, base_y, base_y, base_y)
52
+
53
+ def get_c2(type1, align, type2):
54
+ c1_body_size = 10.0
55
+ c1_wick_size = 5.0
56
+ O1, H1, L1, C1 = get_base_candle(type1, 50.0, c1_body_size, c1_wick_size)
57
+ top1 = max(O1, C1)
58
+ bot1 = min(O1, C1)
59
+ mid1 = (O1 + C1) / 2.0
60
+
61
+ c2_body_size = 10.0
62
+ c2_wick_size = 5.0
63
+ base_y = 50.0
64
+
65
+ if align == 'GAP_UP':
66
+ base_y = H1 + c2_body_size/2.0 + c2_wick_size + 2.0
67
+ elif align == 'GAP_DOWN':
68
+ base_y = L1 - c2_body_size/2.0 - c2_wick_size - 2.0
69
+ elif align == 'ENGULFING':
70
+ c2_body_size = c1_body_size * 1.5
71
+ c2_wick_size = c1_wick_size * 1.5
72
+ base_y = mid1
73
+ elif align == 'HARAMI':
74
+ c2_body_size = c1_body_size * 0.5
75
+ c2_wick_size = c1_wick_size * 0.5
76
+ base_y = mid1
77
+ elif align == 'OVERLAP_UPPER':
78
+ base_y = top1
79
+ elif align == 'OVERLAP_LOWER':
80
+ base_y = bot1
81
+ elif align == 'PIERCING_CLOUD':
82
+ c2_body_size = 18.0
83
+ base_y = mid1 + 4.0
84
+ elif align == 'EQUAL_OPEN':
85
+ base_y += (O1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[0])
86
+ elif align == 'OPEN_EQUALS_HIGH':
87
+ base_y += (H1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[0])
88
+ elif align == 'OPEN_EQUALS_LOW':
89
+ base_y += (L1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[0])
90
+ elif align == 'CONTINUATION':
91
+ base_y += (C1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[0])
92
+ elif align == 'CLOSE_EQUALS_OPEN':
93
+ base_y += (O1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[3])
94
+ elif align == 'CLOSE_EQUALS_HIGH':
95
+ base_y += (H1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[3])
96
+ elif align == 'CLOSE_EQUALS_LOW':
97
+ base_y += (L1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[3])
98
+ elif align == 'MEETING_LINES':
99
+ base_y += (C1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[3])
100
+ elif align == 'HIGH_EQUALS_OPEN':
101
+ base_y += (O1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[1])
102
+ elif align == 'EQUAL_HIGH':
103
+ base_y += (H1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[1])
104
+ elif align == 'HIGH_EQUALS_LOW':
105
+ base_y += (L1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[1])
106
+ elif align == 'HIGH_EQUALS_CLOSE':
107
+ base_y += (C1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[1])
108
+ elif align == 'LOW_EQUALS_OPEN':
109
+ base_y += (O1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[2])
110
+ elif align == 'LOW_EQUALS_HIGH':
111
+ base_y += (H1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[2])
112
+ elif align == 'EQUAL_LOW':
113
+ base_y += (L1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[2])
114
+ elif align == 'LOW_EQUALS_CLOSE':
115
+ base_y += (C1 - get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)[2])
116
+
117
+ return get_base_candle(type2, base_y, c2_body_size, c2_wick_size)
118
+
119
+ def is_bullish(O, C): return C > O
120
+ def is_bearish(O, C): return C < O
121
+
122
+ def determine_standard_name(c1_type, O1, H1, L1, C1, c2_type, O2, H2, L2, C2):
123
+ # This remains simple heuristic, exact namings aren't fully robust for 3000+ combinations
124
+ return "-"
125
+
126
+ def draw_candle(ax, x, O, H, L, C):
127
+ if C > O: color = 'green'
128
+ elif C < O: color = 'red'
129
+ else: color = 'black'
130
+
131
+ ax.plot([x, x], [L, H], color=color, linewidth=2)
132
+ top = max(O, C)
133
+ bottom = min(O, C)
134
+ height = max(top - bottom, 0.2) if top == bottom else (top - bottom)
135
+ rect = patches.Rectangle((x - 0.3, bottom if top != bottom else bottom - 0.1), 0.6, height, linewidth=1, edgecolor=color, facecolor=color)
136
+ ax.add_patch(rect)
137
+
138
+ def get_pattern_desc(align):
139
+ descriptions = {
140
+ 'GAP_UP': 'C2 completely above C1',
141
+ 'GAP_DOWN': 'C2 completely below C1',
142
+ 'ENGULFING': 'C2 body engulfs C1 body',
143
+ 'HARAMI': 'C2 body inside C1 body',
144
+ 'OVERLAP_UPPER': 'C2 centered on C1 High/Open',
145
+ 'OVERLAP_LOWER': 'C2 centered on C1 Low/Close',
146
+ 'PIERCING_CLOUD': 'Large gap and heavy overlap',
147
+ 'EQUAL_OPEN': 'O2 = O1',
148
+ 'OPEN_EQUALS_HIGH': 'O2 = H1',
149
+ 'OPEN_EQUALS_LOW': 'O2 = L1',
150
+ 'CONTINUATION': 'O2 = C1',
151
+ 'CLOSE_EQUALS_OPEN': 'C2 = O1',
152
+ 'CLOSE_EQUALS_HIGH': 'C2 = H1',
153
+ 'CLOSE_EQUALS_LOW': 'C2 = L1',
154
+ 'MEETING_LINES': 'C2 = C1',
155
+ 'HIGH_EQUALS_OPEN': 'H2 = O1',
156
+ 'EQUAL_HIGH': 'H2 = H1',
157
+ 'HIGH_EQUALS_LOW': 'H2 = L1',
158
+ 'HIGH_EQUALS_CLOSE': 'H2 = C1',
159
+ 'LOW_EQUALS_OPEN': 'L2 = O1',
160
+ 'LOW_EQUALS_HIGH': 'L2 = H1',
161
+ 'EQUAL_LOW': 'L2 = L1',
162
+ 'LOW_EQUALS_CLOSE': 'L2 = C1'
163
+ }
164
+ return descriptions.get(align, align)
165
+
166
+ def get_candle_logic(c_type, suffix):
167
+ if c_type == 'Bull_1': return f"H{suffix} > C{suffix} & O{suffix} & L{suffix} <br> C{suffix} > O{suffix} & L{suffix} <br> O{suffix} > L{suffix}"
168
+ elif c_type == 'Bull_2': return f"(C{suffix} = H{suffix}) > O{suffix} & L{suffix} <br> C{suffix} > O{suffix} & L{suffix} <br> O{suffix} > L{suffix}"
169
+ elif c_type == 'Bull_3': return f"H{suffix} > C{suffix} & O{suffix} & L{suffix} <br> C{suffix} > O{suffix} & L{suffix} <br> O{suffix} = L{suffix}"
170
+ elif c_type == 'Bull_4': return f"(C{suffix} = H{suffix}) > O{suffix} & L{suffix} <br> C{suffix} > O{suffix} & L{suffix} <br> O{suffix} = L{suffix}"
171
+ elif c_type == 'Bear_1': return f"L{suffix} < C{suffix} & O{suffix} & H{suffix} <br> C{suffix} < O{suffix} & H{suffix} <br> O{suffix} < H{suffix}"
172
+ elif c_type == 'Bear_2': return f"(C{suffix} = L{suffix}) < O{suffix} & H{suffix} <br> C{suffix} < O{suffix} & H{suffix} <br> O{suffix} < H{suffix}"
173
+ elif c_type == 'Bear_3': return f"L{suffix} < C{suffix} & O{suffix} & H{suffix} <br> C{suffix} < O{suffix} & H{suffix} <br> O{suffix} = H{suffix}"
174
+ elif c_type == 'Bear_4': return f"(C{suffix} = L{suffix}) < O{suffix} & H{suffix} <br> C{suffix} < O{suffix} & H{suffix} <br> O{suffix} = H{suffix}"
175
+ elif c_type == 'Doji_1': return f"H{suffix} > C{suffix} & O{suffix} <br> C{suffix} = O{suffix} <br> C{suffix} & O{suffix} > L{suffix}"
176
+ elif c_type == 'Doji_2': return f"H{suffix} = C{suffix} & O{suffix} <br> C{suffix} = O{suffix} <br> C{suffix} & O{suffix} > L{suffix}"
177
+ elif c_type == 'Doji_3': return f"H{suffix} > C{suffix} & O{suffix} <br> C{suffix} = O{suffix} <br> C{suffix} & O{suffix} = L{suffix}"
178
+ elif c_type == 'Doji_4': return f"H{suffix} = C{suffix} & O{suffix} <br> C{suffix} = O{suffix} <br> C{suffix} & O{suffix} = L{suffix}"
179
+ return ""
180
+
181
+ def get_alignment_logic(align):
182
+ logic_map = {
183
+ 'GAP_UP': 'L_C0 > H_C-1',
184
+ 'GAP_DOWN': 'H_C0 < L_C-1',
185
+ 'ENGULFING': '(max(O_C0, C_C0) > max(O_C-1, C_C-1)) & (min(O_C0, C_C0) < min(O_C-1, C_C-1))',
186
+ 'HARAMI': '(max(O_C0, C_C0) < max(O_C-1, C_C-1)) & (min(O_C0, C_C0) > min(O_C-1, C_C-1))',
187
+ 'OVERLAP_UPPER': '((O_C0 + C_C0) / 2) = max(O_C-1, C_C-1)',
188
+ 'OVERLAP_LOWER': '((O_C0 + C_C0) / 2) = min(O_C-1, C_C-1)',
189
+ 'PIERCING_CLOUD': '(O_C0 > H_C-1) & (C_C0 < ((O_C-1 + C_C-1)/2))',
190
+ 'EQUAL_OPEN': 'O_C0 = O_C-1',
191
+ 'OPEN_EQUALS_HIGH': 'O_C0 = H_C-1',
192
+ 'OPEN_EQUALS_LOW': 'O_C0 = L_C-1',
193
+ 'CONTINUATION': 'O_C0 = C_C-1',
194
+ 'CLOSE_EQUALS_OPEN': 'C_C0 = O_C-1',
195
+ 'CLOSE_EQUALS_HIGH': 'C_C0 = H_C-1',
196
+ 'CLOSE_EQUALS_LOW': 'C_C0 = L_C-1',
197
+ 'MEETING_LINES': 'C_C0 = C_C-1',
198
+ 'HIGH_EQUALS_OPEN': 'H_C0 = O_C-1',
199
+ 'EQUAL_HIGH': 'H_C0 = H_C-1',
200
+ 'HIGH_EQUALS_LOW': 'H_C0 = L_C-1',
201
+ 'HIGH_EQUALS_CLOSE': 'H_C0 = C_C-1',
202
+ 'LOW_EQUALS_OPEN': 'L_C0 = O_C-1',
203
+ 'LOW_EQUALS_HIGH': 'L_C0 = H_C-1',
204
+ 'EQUAL_LOW': 'L_C0 = L_C-1',
205
+ 'LOW_EQUALS_CLOSE': 'L_C0 = C_C-1'
206
+ }
207
+ return logic_map.get(align, "")
208
+
209
+ def get_logic_string(c1_type, align, c2_type):
210
+ lines1 = get_candle_logic(c1_type, "_C-1")
211
+ lines2 = get_candle_logic(c2_type, "_C0")
212
+ align_rule = get_alignment_logic(align)
213
+ return f"{{ <br> {lines1} <br> {lines2} <br> {align_rule} <br> }}"
214
+
215
+ patterns = []
216
+
217
+ # Generate all patterns
218
+ for t1 in candle_types:
219
+ for align in alignments:
220
+ for t2 in candle_types:
221
+ patterns.append((t1, align, t2))
222
+
223
+ total_patterns = len(patterns)
224
+ patterns_per_img = 10
225
+
226
+ markdown_lines = []
227
+ markdown_lines.append(f"# Complete Exhaustive Set of 2-Candle Patterns (Total: {total_patterns})")
228
+ markdown_lines.append("")
229
+ markdown_lines.append("| Code_Name | Pattern_Description | Pattern_Logic | Standard_Name | Image Reference |")
230
+ markdown_lines.append("|---|---|---|---|---|")
231
+
232
+ for i in range(0, total_patterns, patterns_per_img):
233
+ batch = patterns[i:i+patterns_per_img]
234
+
235
+ fig, axes = plt.subplots(2, 5, figsize=(20, 8))
236
+ fig.subplots_adjust(hspace=0.4, wspace=0.3)
237
+ axes = axes.flatten()
238
+
239
+ for ax in axes:
240
+ ax.set_visible(False)
241
+
242
+ for j, (t1, align, t2) in enumerate(batch):
243
+ ax = axes[j]
244
+ ax.set_visible(True)
245
+
246
+ O1, H1, L1, C1 = get_base_candle(t1, 50.0, 10.0, 5.0)
247
+ O2, H2, L2, C2 = get_c2(t1, align, t2)
248
+
249
+ draw_candle(ax, 1, O1, H1, L1, C1)
250
+ draw_candle(ax, 2, O2, H2, L2, C2)
251
+
252
+ min_y = min(L1, L2) - 5
253
+ max_y = max(H1, H2) + 5
254
+ ax.set_ylim(min_y, max_y)
255
+ ax.set_xlim(0, 3)
256
+ ax.set_xticks([])
257
+ ax.set_yticks([])
258
+
259
+ code_name = f"{t1}_{align}_{t2}"
260
+ std_name = determine_standard_name(t1, O1, H1, L1, C1, t2, O2, H2, L2, C2)
261
+ desc = get_pattern_desc(align)
262
+
263
+ ax.set_title(f"{code_name}", fontsize=9)
264
+
265
+ img_name = f"plot_{i//patterns_per_img + 1}.png"
266
+ logic_str = get_logic_string(t1, align, t2)
267
+ markdown_lines.append(f"| {code_name} | {desc} | {logic_str} | {std_name} | {img_name} |")
268
+
269
+ img_path = os.path.join('images', img_name)
270
+ plt.savefig(img_path, bbox_inches='tight')
271
+ plt.close(fig)
272
+
273
+ with open('2C_patterns.md', 'w') as f:
274
+ f.write("\n".join(markdown_lines))
275
+
276
+ print(f"Generated {total_patterns} patterns and saved to images folder. MD written to 2C_patterns.md")
images/plot_1.png ADDED

Git LFS Details

  • SHA256: 711e06c890dcd21846824e54745070ca9370538e99c8f11137c3d9052dba1596
  • Pointer size: 130 Bytes
  • Size of remote file: 14.4 kB
images/plot_10.png ADDED

Git LFS Details

  • SHA256: 53ca4d04c708e5b422c06aca642d251727e52710a9088ccfffe47ea5e34423df
  • Pointer size: 130 Bytes
  • Size of remote file: 16.7 kB
images/plot_100.png ADDED

Git LFS Details

  • SHA256: e63c7e59820ff8fbc944adfe07e6d5a3d436401cfbd288fc3676cc999216d350
  • Pointer size: 130 Bytes
  • Size of remote file: 18.1 kB
images/plot_101.png ADDED

Git LFS Details

  • SHA256: 0fc04b0a8261475785245e8a323c1e16e128e0164ae82b9b6a24ad81012cb294
  • Pointer size: 130 Bytes
  • Size of remote file: 16.2 kB
images/plot_102.png ADDED

Git LFS Details

  • SHA256: 480c256c539d83961e17e4b0d3bb68c4e8e98119619c2a78e74628d691a0ecf7
  • Pointer size: 130 Bytes
  • Size of remote file: 16.3 kB
images/plot_103.png ADDED

Git LFS Details

  • SHA256: 3bac8cae8cec660189af68f57d8715ace004caf0f808c06bbf14e609219fbcd0
  • Pointer size: 130 Bytes
  • Size of remote file: 14.9 kB
images/plot_104.png ADDED

Git LFS Details

  • SHA256: 6545fa4c038794122e595f2bc6d0bb4ef57bc156d6fea54b7f8da20857264c9b
  • Pointer size: 130 Bytes
  • Size of remote file: 16.6 kB
images/plot_105.png ADDED

Git LFS Details

  • SHA256: d807ee72867916349abab9b252551181f2b70a9750e34065ed688b281092f607
  • Pointer size: 130 Bytes
  • Size of remote file: 16.6 kB
images/plot_106.png ADDED

Git LFS Details

  • SHA256: 628fd64a6729a25b68a4ee35a8b2835bbe217ea753b3add9e776b9cb11b66ea1
  • Pointer size: 130 Bytes
  • Size of remote file: 17.7 kB
images/plot_107.png ADDED

Git LFS Details

  • SHA256: 435e2209f87187936e9f958ce66fad8f778119b213f8b91c20cd5cf2d4026ace
  • Pointer size: 130 Bytes
  • Size of remote file: 17.1 kB
images/plot_108.png ADDED

Git LFS Details

  • SHA256: b08db4a8822d55d21b24ff3c450ea4c0a6d7ab1aa957a0caae1895507361b49f
  • Pointer size: 130 Bytes
  • Size of remote file: 16.2 kB
images/plot_109.png ADDED

Git LFS Details

  • SHA256: 5c40f6a710b2166a9ed943f6864d976138a5e73808004829db2e4cf36bf8aacb
  • Pointer size: 130 Bytes
  • Size of remote file: 15.3 kB
images/plot_11.png ADDED

Git LFS Details

  • SHA256: 879ef139e5e05417984b37fbcd6b7e030b4e9df1682b5381288bce6faf457c5b
  • Pointer size: 130 Bytes
  • Size of remote file: 16.8 kB
images/plot_110.png ADDED

Git LFS Details

  • SHA256: bf6ce8cbc49f4cee6239f4dffd87664998ba5a95c20a4e4aa112cfae162ef674
  • Pointer size: 130 Bytes
  • Size of remote file: 16.8 kB
images/plot_111.png ADDED

Git LFS Details

  • SHA256: 338ec2d4acc934621af5d3c070c12fe10fd53eb4d0c88318e063a93604bfd011
  • Pointer size: 130 Bytes
  • Size of remote file: 16.4 kB
images/plot_112.png ADDED

Git LFS Details

  • SHA256: 58e84f40eab06795886b21ba5f9dc89c2da7c5ff723d599be5ede894e0f2a491
  • Pointer size: 130 Bytes
  • Size of remote file: 15.7 kB
images/plot_113.png ADDED

Git LFS Details

  • SHA256: 92ca344f7d2eae2ba75807f3e29545ac4476d0ed8babd57f6fcd4e1d9caad40b
  • Pointer size: 130 Bytes
  • Size of remote file: 16.7 kB
images/plot_114.png ADDED

Git LFS Details

  • SHA256: 2626ae19ee6ada35980204858c966eb3da56d4d2ad1c3baef4ec3c4b37a40d19
  • Pointer size: 130 Bytes
  • Size of remote file: 15.2 kB
images/plot_115.png ADDED

Git LFS Details

  • SHA256: bd0972802e3ece2b642421be295554746ddc6e3d8085bb6466dcce7be2dfcd62
  • Pointer size: 130 Bytes
  • Size of remote file: 13.9 kB
images/plot_116.png ADDED

Git LFS Details

  • SHA256: 490be1bc0b7f6230663f5dcb28423b823abc9452184df87243d7bfd0676c9718
  • Pointer size: 130 Bytes
  • Size of remote file: 16.2 kB
images/plot_117.png ADDED

Git LFS Details

  • SHA256: aac91af978de52040c30819dc35799881b10baa49fb8dc641dda4337c74814fd
  • Pointer size: 130 Bytes
  • Size of remote file: 16.6 kB
images/plot_118.png ADDED

Git LFS Details

  • SHA256: 37c12d4ed2d8caa21460af9816d12441922ea6de1e60a5a0b544353b9e9f2baa
  • Pointer size: 130 Bytes
  • Size of remote file: 18.2 kB
images/plot_119.png ADDED

Git LFS Details

  • SHA256: 9f3b27a5fd0eb32159867424348cd04b69db697558a8ad516710b2c64e6bb2d3
  • Pointer size: 130 Bytes
  • Size of remote file: 17 kB
images/plot_12.png ADDED

Git LFS Details

  • SHA256: ad6d25e827e7145850590f205f4da1abc2b19938430305e8f0045d0a423c754c
  • Pointer size: 130 Bytes
  • Size of remote file: 16.3 kB
images/plot_120.png ADDED

Git LFS Details

  • SHA256: 1ee5d1a2a9252fb475c1bb62c452ed594277844ba5e4dc4cf6e256a794431dff
  • Pointer size: 130 Bytes
  • Size of remote file: 15.5 kB
images/plot_121.png ADDED

Git LFS Details

  • SHA256: b66711e0e1d38b375b32d97745dad22509693acfcb906ca9a36c5b082667403b
  • Pointer size: 130 Bytes
  • Size of remote file: 16.6 kB
images/plot_122.png ADDED

Git LFS Details

  • SHA256: 98d122bd444e016d6a17fad07ca94d3407a94c8e49f7378672ae79e79a1f7a5f
  • Pointer size: 130 Bytes
  • Size of remote file: 16.9 kB
images/plot_123.png ADDED

Git LFS Details

  • SHA256: e1f6ea9c1f08ae5cb99113e0dd954de80ef5146891c8e889267af47125d3bcdf
  • Pointer size: 130 Bytes
  • Size of remote file: 16.2 kB
images/plot_124.png ADDED

Git LFS Details

  • SHA256: 8b63671d1edfd59b5afab655145b1975f3d5be9013c6259a2087969f0eec7465
  • Pointer size: 130 Bytes
  • Size of remote file: 16.5 kB
images/plot_125.png ADDED

Git LFS Details

  • SHA256: a06445c7faf1b7ec6b7b9780fbf0d124d9aec58fb577d24c705d3329023f98a3
  • Pointer size: 130 Bytes
  • Size of remote file: 17.5 kB
images/plot_126.png ADDED

Git LFS Details

  • SHA256: eb9de75eed129acb8b964b3b162edb149f671a3195b120302ecd54db4e203633
  • Pointer size: 130 Bytes
  • Size of remote file: 17.1 kB
images/plot_127.png ADDED

Git LFS Details

  • SHA256: 75ca81f179c3382f1794a24aed969c388d11a80f9054a309926526d0cf1697ad
  • Pointer size: 130 Bytes
  • Size of remote file: 18 kB
images/plot_128.png ADDED

Git LFS Details

  • SHA256: 8a645f59658cd307786486c1553133a431828bdfd13544865aa885cb1382cde7
  • Pointer size: 130 Bytes
  • Size of remote file: 15.8 kB
images/plot_129.png ADDED

Git LFS Details

  • SHA256: a68856630c8191f99b8fcdfee1a040c676f5b94379787d1776a81a43ddfe1345
  • Pointer size: 130 Bytes
  • Size of remote file: 16.6 kB
images/plot_13.png ADDED

Git LFS Details

  • SHA256: 7caa153c1ca1b0e25e57a530947128a9b457c57d9e3204f2f8f345445cd52042
  • Pointer size: 130 Bytes
  • Size of remote file: 15.1 kB
images/plot_130.png ADDED

Git LFS Details

  • SHA256: 902dcfa5665acea0f77ed97dbbb74e8c6f3d6b12408b093b331bc2d8fc117494
  • Pointer size: 130 Bytes
  • Size of remote file: 16.8 kB
images/plot_131.png ADDED

Git LFS Details

  • SHA256: 9b33d90ae0e6fc446d2afef51e06f323b3c29a1ce4fe054288fecc306d6ff65f
  • Pointer size: 130 Bytes
  • Size of remote file: 16.4 kB
images/plot_132.png ADDED

Git LFS Details

  • SHA256: 88e81853f4b89124ec529da309c7fdf0c95dc027af0f535199411952705d429e
  • Pointer size: 130 Bytes
  • Size of remote file: 16.9 kB
images/plot_133.png ADDED

Git LFS Details

  • SHA256: cd6ca93739598be99fdd0d4c7bac73b6356e49326043da384410496633c28678
  • Pointer size: 130 Bytes
  • Size of remote file: 16.9 kB
images/plot_134.png ADDED

Git LFS Details

  • SHA256: 8f69e6e2de54109ca1832ab8805345ade11c627ece965d54647e381d69e055a0
  • Pointer size: 130 Bytes
  • Size of remote file: 18.2 kB
images/plot_135.png ADDED

Git LFS Details

  • SHA256: d16b8a8173b75745dc4b345ddab1c5e22b816a78b8c8723e6eb4393f6cf8470a
  • Pointer size: 130 Bytes
  • Size of remote file: 17.2 kB
images/plot_136.png ADDED

Git LFS Details

  • SHA256: d4d778db7873c6090c8ec1f8f3c132566e2ce528bf5bbcb6754e39d8294da763
  • Pointer size: 130 Bytes
  • Size of remote file: 16.9 kB
images/plot_137.png ADDED

Git LFS Details

  • SHA256: 7d72fa62357c9b01b5fbb07c0bd9d7edd5644984fab073b424bb864ef23ad3fb
  • Pointer size: 130 Bytes
  • Size of remote file: 16.6 kB
images/plot_138.png ADDED

Git LFS Details

  • SHA256: 0494e32400630fa3928e6cd201473320a7bc6c6b0d9cd0df34c00193d187b6d8
  • Pointer size: 130 Bytes
  • Size of remote file: 17.5 kB
images/plot_139.png ADDED

Git LFS Details

  • SHA256: 4a27dc5c15e7cafedf66ede531ba54e6b21207e571414f3bc0383c6b5ded97d4
  • Pointer size: 130 Bytes
  • Size of remote file: 15.1 kB
images/plot_14.png ADDED

Git LFS Details

  • SHA256: 9cc946e595b054acb832f1910c4fee4ec7bb247516de89c28a8888198c6c7ca1
  • Pointer size: 130 Bytes
  • Size of remote file: 17.1 kB
images/plot_140.png ADDED

Git LFS Details

  • SHA256: 13e8e3aefd212ae2f67b80e40cb5ab5f48f63fc40d42f528f5e41b00671c2c9a
  • Pointer size: 130 Bytes
  • Size of remote file: 15.9 kB