+
+
+ Transcripts
+
+
+
+
+
+
+
+
+
+
+ Select Year
+
+
+
+ {#each yearRange as index}
+ {
+ year = index;
+ getTranscripts();
+ }}
+ class="cursor-pointer hover:bg-primary"
+ >
+ {index}
+
+ {/each}
+
+
+
+
+
+
+
+
+
+
+
+ Select Quarter
+
+
+
+ {#each [1, 2, 3, 4] as index}
+ {
+ quarter = index;
+ getTranscripts();
+ }}
+ class="cursor-pointer hover:bg-primary"
+ >
+ Q{index}
+
+ {/each}
+
+
+
+
+
+
+
+ {#if isLoaded}
+ {#if chats?.length !== 0}
+
+
+ Q{displayQuarter}
+ {displayYear} · Earnings Call Transcript
+
+
+ {new Date(date).toLocaleDateString("en-US", {
+ month: "short",
+ day: "numeric",
+ year: "numeric",
+ })}
+
+
+
+ {#each chats as item}
+ {#if item?.name === "Operator"}
+
+
+
+
+ {item?.name}
+
+
+
+
+
+
+ {@html item?.description}
+
+
+
+ {:else}
+
+
+
+
+ {item?.name?.slice(0, 1)}
+
+
+
+
+ {item?.name}
+
+
+
+
+
+ {@html item?.description}
+
+
+
+ {/if}
+ {/each}
+
+
+ {:else}
+
+ {/if}
+ {:else}
+
+ {/if}
+