mlara commited on
Commit
9253faf
1 Parent(s): cc67b5c

first commit

Browse files
Files changed (8) hide show
  1. Dockerfile +11 -0
  2. README.md +4 -4
  3. app.py +110 -0
  4. chainlit.md +11 -0
  5. data/Process.ipynb +1 -0
  6. data/roaringkitty.csv +1699 -0
  7. data/transcript_GZTr1-Gp74U.txt +1134 -0
  8. requirements.txt +5 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+ RUN useradd -m -u 1000 user
3
+ USER user
4
+ ENV HOME=/home/user \
5
+ PATH=/home/user/.local/bin:$PATH
6
+ WORKDIR $HOME/app
7
+ COPY --chown=user . $HOME/app
8
+ COPY ./requirements.txt ~/app/requirements.txt
9
+ RUN pip install -r requirements.txt
10
+ COPY . .
11
+ CMD ["chainlit", "run", "app.py", "--port", "7860"]
README.md CHANGED
@@ -1,8 +1,8 @@
1
  ---
2
- title: Earnings Final
3
- emoji: 🐠
4
- colorFrom: yellow
5
- colorTo: blue
6
  sdk: docker
7
  pinned: false
8
  license: apache-2.0
 
1
  ---
2
+ title: Barbie RAQA Application Chainlit Demo
3
+ emoji: 🔥
4
+ colorFrom: red
5
+ colorTo: red
6
  sdk: docker
7
  pinned: false
8
  license: apache-2.0
app.py ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import chainlit as cl
2
+ from langchain.embeddings.openai import OpenAIEmbeddings
3
+ from langchain.document_loaders.csv_loader import CSVLoader
4
+ from langchain.embeddings import CacheBackedEmbeddings
5
+ from langchain.text_splitter import RecursiveCharacterTextSplitter
6
+ from langchain.vectorstores import FAISS
7
+ from langchain.chains import RetrievalQA
8
+ from langchain.chat_models import ChatOpenAI
9
+ from langchain.storage import LocalFileStore
10
+ from langchain.prompts.chat import (
11
+ ChatPromptTemplate,
12
+ SystemMessagePromptTemplate,
13
+ HumanMessagePromptTemplate,
14
+ )
15
+ import chainlit as cl
16
+
17
+ text_splitter = RecursiveCharacterTextSplitter(chunk_size=1000, chunk_overlap=100)
18
+
19
+ system_template = """
20
+ Use the following pieces of context to answer the user's question.
21
+ Please respond as if you were Ken from the movie Barbie. Ken is a well-meaning but naive character who loves to Beach. He talks like a typical Californian Beach Bro, but he doesn't use the word "Dude" so much.
22
+ If you don't know the answer, just say that you don't know, don't try to make up an answer.
23
+ You can make inferences based on the context as long as it still faithfully represents the feedback.
24
+
25
+ Example of your response should be:
26
+
27
+ ```
28
+ The answer is foo
29
+ ```
30
+
31
+ Begin!
32
+ ----------------
33
+ {context}"""
34
+
35
+ messages = [
36
+ SystemMessagePromptTemplate.from_template(system_template),
37
+ HumanMessagePromptTemplate.from_template("{question}"),
38
+ ]
39
+ prompt = ChatPromptTemplate(messages=messages)
40
+ chain_type_kwargs = {"prompt": prompt}
41
+
42
+ @cl.author_rename
43
+ def rename(orig_author: str):
44
+ rename_dict = {"RetrievalQA": "Consulting The Kens"}
45
+ return rename_dict.get(orig_author, orig_author)
46
+
47
+ @cl.on_chat_start
48
+ async def init():
49
+ msg = cl.Message(content=f"Building Index...")
50
+ await msg.send()
51
+
52
+ # build FAISS index from csv
53
+ loader = CSVLoader(file_path="./data/transcript.csv", source_column="Link")
54
+ data = loader.load()
55
+ documents = text_splitter.transform_documents(data)
56
+ store = LocalFileStore("./cache/")
57
+ core_embeddings_model = OpenAIEmbeddings()
58
+ embedder = CacheBackedEmbeddings.from_bytes_store(
59
+ core_embeddings_model, store, namespace=core_embeddings_model.model
60
+ )
61
+ # make async docsearch
62
+ docsearch = await cl.make_async(FAISS.from_documents)(documents, embedder)
63
+
64
+ chain = RetrievalQA.from_chain_type(
65
+ ChatOpenAI(model="gpt-4", temperature=0, streaming=True),
66
+ chain_type="stuff",
67
+ return_source_documents=True,
68
+ retriever=docsearch.as_retriever(),
69
+ chain_type_kwargs = {"prompt": prompt}
70
+ )
71
+
72
+ msg.content = f"Index built!"
73
+ await msg.send()
74
+
75
+ cl.user_session.set("chain", chain)
76
+
77
+
78
+ @cl.on_message
79
+ async def main(message):
80
+ chain = cl.user_session.get("chain")
81
+ cb = cl.AsyncLangchainCallbackHandler(
82
+ stream_final_answer=False, answer_prefix_tokens=["FINAL", "ANSWER"]
83
+ )
84
+ cb.answer_reached = True
85
+ res = await chain.acall(message, callbacks=[cb], )
86
+
87
+ answer = res["result"]
88
+ source_elements = []
89
+ visited_sources = set()
90
+
91
+ # Get the documents from the user session
92
+ docs = res["source_documents"]
93
+ metadatas = [doc.metadata for doc in docs]
94
+ all_sources = [m["source"] for m in metadatas]
95
+
96
+ for source in all_sources:
97
+ if source in visited_sources:
98
+ continue
99
+ visited_sources.add(source)
100
+ # Create the text element referenced in the message
101
+ source_elements.append(
102
+ cl.Text(content="https://www.youtube.com/watch?" + source, name="Link to Video")
103
+ )
104
+
105
+ if source_elements:
106
+ answer += f"\nSources: {', '.join([e.content.decode('utf-8') for e in source_elements])}"
107
+ else:
108
+ answer += "\nNo sources found"
109
+
110
+ await cl.Message(content=answer, elements=source_elements).send()
chainlit.md ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Assignment Part 2: Deploying Your Model to a Hugging Face Space
2
+
3
+ Now that you've done the hard work of setting up the RetrievalQA chain and sourcing your documents - let's tie it together in a ChainLit application.
4
+
5
+ ### Duplicating the Space
6
+
7
+ Since this is our first assignment, all you'll need to do is duplicate this space and add your own `OPENAI_API_KEY` as a secret in the space.
8
+
9
+ ### Conclusion
10
+
11
+ Now that you've shipped an LLM-powered application, it's time to share! 🚀
data/Process.ipynb ADDED
@@ -0,0 +1 @@
 
 
1
+ {"cells":[{"cell_type":"code","execution_count":6,"metadata":{"executionInfo":{"elapsed":148,"status":"ok","timestamp":1703035908850,"user":{"displayName":"Manuel Lara","userId":"10182117638611832193"},"user_tz":360},"id":"w3t4qHlYyIPE"},"outputs":[],"source":["import re\n","import pandas as pd\n","\n","fname = \"transcript_GZTr1-Gp74U.txt\"\n","v = fname.split(\"_\")[1].split(\".\")[0]\n","lines = open(fname).readlines()\n","link = f\"v={v}&ab_channel=RoaringKitty\"\n","results = []\n","row = {}\n","for i, line in enumerate(lines):\n"," if re.match(r\"\\d+:\\d+\", line):\n"," row[\"Time\"] = line\n"," if i > 0:\n"," row[\"Link\"] = link\n"," results.append(row)\n"," row = {}\n"," else:\n"," row[\"Text\"] = line\n","df = pd.DataFrame(results)\n","df.to_csv(\"transcript.csv\")"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"1U0TqJUwyM4R"},"outputs":[],"source":["https://www.youtube.com/watch?"]}],"metadata":{"colab":{"authorship_tag":"ABX9TyOSs3ocpSBDJmGfEvS/JTCv","provenance":[]},"kernelspec":{"display_name":"Python 3","name":"python3"},"language_info":{"name":"python"}},"nbformat":4,"nbformat_minor":0}
data/roaringkitty.csv ADDED
@@ -0,0 +1,1699 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,Text,Time,Link
2
+ 0,"yo what up everybody this is going to be the first video of the kitty corner and the market has kind of forced my
3
+ ","0:05
4
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
5
+ 1,"hand on this one the first stock that i'm going to talk about is gamestop and i know it's a polarizing stock some people won't even tune into the stream
6
+ ","0:11
7
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
8
+ 2,"right now when they hear that i'm bullish on gamestop uh at the current price point it's trading about four bucks right now 260
9
+ ","0:17
10
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
11
+ 3,"million dollar market cap and i most of these kitty corner videos i want them to be shorter like one
12
+ ","0:23
13
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
14
+ 4,"minute five minute ten minute max i wanna be that's that way it's just a quick intro into uh my thoughts on the stock
15
+ ","0:28
16
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
17
+ 5,"but this game stomp on it's going to be a little bit longer because um i have a lot to say about it
18
+ ","0:34
19
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
20
+ 6,"i could talk about it for weeks i'm going to try to keep this as short as i possibly can but i have a lot to say i'm also hoping maybe you can catch some
21
+ ","0:40
22
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
23
+ 7,"of my blind spots if i have some poke some holes in my thesis and share it with me because um yeah i think
24
+ ","0:46
25
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
26
+ 8,"everyone else is crazy and i think i'm right but i've been wrong plenty of times in the past so i'm gonna upload this and maybe you can
27
+ ","0:53
28
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
29
+ 9,"share your thoughts with me but uh yeah let's dive in gamestop okay here we are so like i said this video is going to be a little bit
30
+ ","0:58
31
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
32
+ 10,"on the longer side for a kitty corner video so if you drink you might want one of these for this
33
+ ","1:04
34
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
35
+ 11,"it's july 2020 right now and i'm bullish on gamestop at the current price point of about four dollars per share
36
+ ","1:11
37
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
38
+ 12,"260 million dollar market cap i've been adding to the position the past couple weeks it's been trading below four
39
+ ","1:16
40
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
41
+ 13,"dollars per share and it's now the largest position in the roaring kitty model portfolio so
42
+ ","1:21
43
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
44
+ 14,"um yeah i have a lot to say about it i've been i've been tracking it for a while i know it's a divisive stock so
45
+ ","1:27
46
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
47
+ 15,"definitely share your your thoughts with me on this whether you agree with me or not i'm curious to hear um and because i have so much to say
48
+ ","1:34
49
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
50
+ 16,"about this i had to put together this word doc just to help guide the conversation because i'd be all over the place because i uh
51
+ ","1:40
52
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
53
+ 17,"without this guidance so i tried to just focus on what i consider the more important aspects um it just boiled into a single word doc
54
+ ","1:48
55
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
56
+ 18,"here but uh yeah we'll just we'll just see how this goes but before we kick things off some recommended reading in fact i can save
57
+ ","1:54
58
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
59
+ 19,"you the trouble of watching this video because my bowl thesis has already been covered by so many other folks i'm kind
60
+ ","2:00
61
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
62
+ 20,"of just just sharing with you my viewpoint but everything that every aspect of my thesis people have already talked about so
63
+ ","2:07
64
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
65
+ 21,"if you read these things these recommended things you won't need to watch this video so if you check out scion's letters to the
66
+ ","2:13
67
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
68
+ 22,"board in just their commentary on things uh cyan that's barry's firm they had to file a 13d this year
69
+ ","2:20
70
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
71
+ 23,"because they took a position at the time greater than five percent and within that 13d i haven't pulled up they had they included all their letters
72
+ ","2:26
73
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
74
+ 24,"all their communications with management and the board and so forth so if you pull up that 13d at the sec website you
75
+ ","2:31
76
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
77
+ 25,"can look through all the letters all in one place you could get these elsewhere too because they were press releases but i kind of like having it all in one
78
+ ","2:36
79
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
80
+ 26,"place um so check out those letters to the board and also because there was the the board
81
+ ","2:42
82
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
83
+ 27,"vote back in june they uh they shared their opinion on uh
84
+ ","2:47
85
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
86
+ 28,"gamestop back in june so this is their latest viewpoint at the time they still even though they weren't they were below five percent they still had four percent
87
+ ","2:53
88
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
89
+ 29,"position which a good a good size position but they shared their latest views so this was as of june this was only a month ago so
90
+ ","2:59
91
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
92
+ 30,"scion st still seems fairly bullish on this but i really like i really like barry's letters because they they get right to the point so
93
+ ","3:05
94
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
95
+ 31,"quickly that uh the whole thesis is right here this latest not maybe not just this letter but the
96
+ ","3:11
97
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
98
+ 32,"whole thesis can be found in just these letters he has a he's a great job of of communicating his points so succinctly
99
+ ","3:17
100
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
101
+ 33,"um but anyway i bring this up because that's his latest commentary on the company and besides scion you'll also want to
102
+ ","3:24
103
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
104
+ 34,"check out when i say headstone premise letters and their restore gamestop presentation so hester and permit i think they own like seven eight percent
105
+ ","3:30
106
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
107
+ 35,"of gamestop right now the activist investors they were the ones trying to get board seats but uh they've had a number of letters
108
+ ","3:35
109
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
110
+ 36,"back and forth um over the past couple years now but they check out those letters too
111
+ ","3:42
112
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
113
+ 37,"they have a lot of thoughts and good thoughts on gamestop um and they also have this restore gamestop
114
+ ","3:48
115
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
116
+ 38,"presentation this is from may 2020 where they they put together this presentation to try to help them to
117
+ ","3:53
118
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
119
+ 39,"share it with the investors and so forth help them get the board seats but it's like 80 plus pages like how much can i add to an 80 plus page
120
+ ","3:59
121
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
122
+ 40,"presentation not much i'm going to reference this a couple times in this video but check out this presentation because a lot of the thesis
123
+ ","4:06
124
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
125
+ 41,"is covered right here and then yeah so let me just pull this
126
+ ","4:11
127
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
128
+ 42,"back over here all right so that's some recommendation also the seeking alpha articles i think i have it open here seeking alpha
129
+ ","4:17
130
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
131
+ 43,"articles yeah there's all sometimes you come across a company there's not that many articles written or the ones that are written just aren't
132
+ ","4:22
133
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
134
+ 44,"that good gamestep has a number of really good articles out there and um i'm biased you don't need to tell
135
+ ","4:29
136
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
137
+ 45,"me this but in my opinion the the bullish articles uh here the bullish authors they seem to
138
+ ","4:34
139
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
140
+ 46,"be more attuned to reality than the bears i think maybe you disagree that's cool let me know but i think they seem to be
141
+ ","4:41
142
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
143
+ 47,"more the security analyst type this is going to come up later in this video but um check out the articles a lot of the stuff i'm going to say it's already been
144
+ ","4:47
145
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
146
+ 48,"covered here so that's what i mean i don't have much new to say i'm just sharing my viewpoint so check those out but yeah i think
147
+ ","4:53
148
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
149
+ 49,"that's just about everything some recommended reading so you read all that stuff you probably don't need to watch this but if you are going to watch this
150
+ ","4:58
151
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
152
+ 50,"let's keep moving forward so like i said there's a lot of aspects of a lot of moving parts to this bowl thesis but i boiled it down to just what
153
+ ","5:04
154
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
155
+ 51,"i consider the three overs digital risks seem to me to be overblown the negative sentiment is overdone
156
+ ","5:11
157
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
158
+ 52,"and the value is overlooked in fact i think the gamestop stock is i mean it
159
+ ","5:17
160
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
161
+ 53,"epitomizes value investing it's like value investing at its finest because it's such a classic case of
162
+ ","5:24
163
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
164
+ 54,"a value investing we'll get into it later i don't want to spend too much time on that but it's just a classic value stock
165
+ ","5:29
166
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
167
+ 55,"and i think that's why it's so polarizing in my opinion but okay so let's get into the digital
168
+ ","5:36
169
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
170
+ 56,"wrist overblown so um the tren this transition to digital i think it's just much slower than what's
171
+ ","5:42
172
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
173
+ 57,"being priced in it seems to me that um it's been happening over time i do think
174
+ ","5:47
175
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
176
+ 58,"it's inevitable like if we're looking out 50 years 100 years we don't need to have a discussion because i'm on we're on the same page everything's
177
+ ","5:53
178
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
179
+ 59,"going to be digital i just don't think we're there yet and this is meaningful because 2020 is when the consoles are coming out we it
180
+ ","6:00
181
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
182
+ 60,"does matter where we are today and where we'll be the next couple years you can't just say we're going fully
183
+ ","6:05
184
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
185
+ 61,"digital so that's the end of the discussion i think that's what a lot of people are doing i'll touch on this later too but people just go digital is the future so there's
186
+ ","6:13
187
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
188
+ 62,"nothing to be had here with gamestop there's no he there's there's no future um but
189
+ ","6:18
190
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
191
+ 63,"i don't think we're there yet i mean it's just it's transitioning much slower i have some web pages pulled up here
192
+ ","6:23
193
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
194
+ 64,"just to so i think i try to let me just keep on going with these bullet points i'll just list them before i start pulling up some
195
+ ","6:28
196
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
197
+ 65,"other websites but people just say i mean physical discs there's they still remain a good size chunk in 2020 that's part of what i'm getting at
198
+ ","6:34
199
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
200
+ 66,"i also think in-game purchases they're kind of skewing some of the figures that people are sharing like they'll share some figures which i'll show in just a
201
+ ","6:40
202
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
203
+ 67,"sec if they're saying this is what percentage of the market is digital right now but i think those in-game purchases are kind of affecting that i'm
204
+ ","6:46
205
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
206
+ 68,"not certain but that's okay because i'm a value investor i don't need to be precise um and then why disks but before i get
207
+ ","6:52
208
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
209
+ 69,"to ydisk let me just share some of the things so if you google like physical versus digital you're going to come across the
210
+ ","6:58
211
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
212
+ 70,"statista web page and like you see stuff like this and maybe other people are and
213
+ ","7:04
214
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
215
+ 71,"and you see i highlighted this part in contrast only 17 of video games were sold in physical form
216
+ ","7:09
217
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
218
+ 72,"and you see figures like this and you see the trend too if you look at the trend over the past five years it looks really alarming and i did this so people
219
+ ","7:15
220
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
221
+ 73,"see this and they think oh man game stops toast but um i think there's just some
222
+ ","7:20
223
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
224
+ 74,"misunderstanding with that data i think a lot of that like i said is is in-game purchases i think the
225
+ ","7:25
226
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
227
+ 75,"actual outright purchase of disks is still relatively high
228
+ ","7:31
229
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
230
+ 76,"and i have um let me just see what other page i got up here so to counter this there was an article
231
+ ","7:36
232
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
233
+ 77,"in may 2019 by uh web bush securities i mean maybe they're biased too maybe they're bullish on game stuff
234
+ ","7:42
235
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
236
+ 78,"but they talk about a number of things that like kind of counter that point that everything's going digital like sales of uh the fifa game is still 75
237
+ ","7:49
238
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
239
+ 79,"discs in 2018. i don't even know the accuracy that i see the report that they're citing but this is the thing you're going to see
240
+ ","7:55
241
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
242
+ 80,"lots of data and as an individual investor it's hard to know what's true and what's not what's accurate so you kind of just got to read a lot
243
+ ","8:01
244
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
245
+ 81,"and try to get a feel for this type of stuff and so check out this article it was in variety check this out because they kind
246
+ ","8:07
247
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
248
+ 82,"of counter a lot of this stuff whether or not you fully agree with it that's another thing but just read it and then there was another thing here
249
+ ","8:14
250
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
251
+ 83,"too in game industry.biz where they talk about this is more a european focus where they're talking
252
+ ","8:19
253
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
254
+ 84,"about certain countries um what percent is is digitized what what percentage of
255
+ ","8:24
256
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
257
+ 85,"games purchased or physical and so look over this i don't want to review the whole thing that's not the point of this video but just check out these sources
258
+ ","8:30
259
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
260
+ 86,"where this was 2018 2019 it's 2020 right now and the trend is clearly going toward digital but this is my
261
+ ","8:36
262
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
263
+ 87,"point is that you're still seeing some countries that are still heavily skewed to physical and i don't think one year later all of
264
+ ","8:42
265
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
266
+ 88,"a sudden everyone's going to be buying digital so that's the thing is because these next few years are critical for this gamestop thesis and so
267
+ ","8:48
268
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
269
+ 89,"if there's still a good chunk that's physical games gamestop sells other stuff too but i the software itself those used games
270
+ ","8:54
271
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
272
+ 90,"what everyone's focused on because that generates a lot of free cash flow that in particular yeah i just checked
273
+ ","9:00
274
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
275
+ 91,"these articles out now i know i'm rambling a bit but i got to keep going to keep this quick what else did i have up here oh and then
276
+ ","9:06
277
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
278
+ 92,"like so there was a um uh this article's from june 2019 it was an interview
279
+ ","9:12
280
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
281
+ 93,"it was it was on the verge but they were talking to uh the xbox boss phil spencer
282
+ ","9:17
283
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
284
+ 94,"and um so this i'm like trying to piece together the story as to that's what i mean it's so hard to know exactly what
285
+ ","9:23
286
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
287
+ 95,"these numbers are how many people are still buying discs so i like try to look for stuff that piece to piece together the narrative
288
+ ","9:29
289
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
290
+ 96,"um and so phil spencer was saying i want to get this was last year i want to give
291
+ ","9:34
292
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
293
+ 97,"people choice and right now physical is a choice that millions of people love so this is the xbox
294
+ ","9:40
295
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
296
+ 98,"phil spencer and they're saying this last year that's be that should be meaningful to people when you tell me no one's buying
297
+ ","9:45
298
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
299
+ 99,"physical anymore if xbox um is saying that so the people in charge of xbox are helping lead the
300
+ ","9:51
301
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
302
+ 100,"charge of saying that's like you should pay attention to that um and if you remember back in 2013 when
303
+ ","9:56
304
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
305
+ 101,"they were rolling out the xbox there was some confusion over the console and they kind of messed up a bit
306
+ ","10:02
307
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
308
+ 102,"and then they had they wrote this blog um i forget the the story itself but you they had to say
309
+ ","10:08
310
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
311
+ 103,"like this they had to walk it back you told us how much you loved the flexibility and so forth and uh with games delivered on disc they had
312
+ ","10:13
313
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
314
+ 104,"to start offering um the dis version and start trumpeting that even more because people wanted that i get it was 2013.
315
+ ","10:20
316
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
317
+ 105,"it's changed during this console cycle i get that it's not lost to me i just mean um that xbox kind of realized that like
318
+ ","10:27
319
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
320
+ 106,"all right people still want these discs and i still think that's the case today 2020 to a degree maybe not not as much in 2013 because it
321
+ ","10:33
322
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
323
+ 107,"has indeed changed quite a bit but it is still it is still relevant um
324
+ ","10:39
325
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
326
+ 108,"and was there anything else i wanted to point out i had a couple of web pages that i pulled up i showed that nah that's it that's it for this oh and then
327
+ ","10:45
328
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
329
+ 109,"just the general physical versus digital case now because it's it's july 2020 the consoles are coming out you're gonna see a lot of
330
+ ","10:50
331
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
332
+ 110,"youtube videos of people debating this should they go physical should they go digital and there's a lot of good videos out
333
+ ","10:56
334
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
335
+ 111,"here and uh in particular uh fanta i haven't seen all your stuff yet but from what i've seen so far you have a lot of
336
+ ","11:01
337
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
338
+ 112,"good thoughts on this i mean i know you're not a security analyst that's what i mean a lot of people are voicing their opinions you have a lot of
339
+ ","11:06
340
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
341
+ 113,"um spheres crossing paths here like gamers and so forth and i agree with a lot of stuff the finn is
342
+ ","11:11
343
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
344
+ 114,"saying here but he brings up a lot of good points um but then in in also these other ones
345
+ ","11:17
346
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
347
+ 115,"he's got a couple videos too um but um there's a whole number of videos out here and everyone seems to be
348
+ ","11:22
349
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
350
+ 116,"leaning a bit more toward physical when you watch these things um i just find that interesting like why
351
+ ","11:27
352
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
353
+ 117,"you hear digital digital but then you see these videos and people kind of talking more about the benefits of physical but you can find it both ways
354
+ ","11:33
355
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
356
+ 118,"you can kind of find whatever you want to find in here but in this video i brought this one up because this gentleman he's leaning more
357
+ ","11:38
358
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
359
+ 119,"toward digital and but then you check out the comments everyone starts talking about the disc
360
+ ","11:43
361
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
362
+ 120,"versus disc version i want the disc version dispersion diff just about every comment not maybe not every single one but like this like this
363
+ ","11:50
364
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
365
+ 121,"i'm trying to piece together that story right um so when i see stuff like this i just find it interesting that all i'm trying
366
+ ","11:56
367
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
368
+ 122,"to figure out as a value investor is is there any is does there remain some demand in 2020 for those disks
369
+ ","12:02
370
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
371
+ 123,"because that's important for game stops um the free cash flow degenerate free cash flow generation so
372
+ ","12:08
373
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
374
+ 124,"look check this stuff out for yourself i'm just not we're not going to watch these videos right now but i just encourage you to check it out yourself if you're trying to build your own
375
+ ","12:14
376
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
377
+ 125,"thesis around gamestop and then um so why discs uh
378
+ ","12:19
379
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
380
+ 126,"preference console storage trade value download speed sharing i don't even need to i'm just it's covered by the restore gamestop
381
+ ","12:26
382
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
383
+ 127,"presentation um this the what we're getting at here is that there's still consumer demand
384
+ ","12:31
385
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
386
+ 128,"for game stops offering so let me pull this over here and let's just scroll down just a couple
387
+ ","12:36
388
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
389
+ 129,"this is what is this slide 80 i think um and just gamestop retains my share with customers now this is all quoted
390
+ ","12:42
391
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
392
+ 130,"from one single survey so this is the stuff i look at where are you getting this data from um is this demand legitimate and this is
393
+ ","12:48
394
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
395
+ 131,"what i mean i'm not basing everything on this one single data point but um this is the stuff i like to see as a as
396
+ ","12:55
397
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
398
+ 132,"a value investor because i just need to make sure that gamestop isn't going bankrupt in that people are
399
+ ","13:00
400
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
401
+ 133,"still buying disks and that there are still demands for gamestop for just a couple of years because if that's the case
402
+ ","13:07
403
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
404
+ 134,"gamestop is likely undervalued so the point of just showing this that gamestop there's still interest for uh it is some
405
+ ","13:15
406
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
407
+ 135,"or many of its products and then digital downloads have slowed share gains over time you can see this
408
+ ","13:22
409
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
410
+ 136,"this chart too check just check out this presentation right but i'm just i'm just trying to make my point there that uh it's not over yet in 2020 it's not over
411
+ ","13:28
412
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
413
+ 137,"yet 2030 yeah maybe it will be but not yet um anything else oh yeah so this is a
414
+ ","13:34
415
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
416
+ 138,"list of the i've kind of put together that list it's uh you can see this here too so it's interesting that people are
417
+ ","13:41
418
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
419
+ 139,"downloading games isn't lost on me right because i i have friends i have family and they think i'm crazy that i'm
420
+ ","13:46
421
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
422
+ 140,"bullish on gamestop because they many of them are downloading or downloading games and so that's the thing you got these anecdotes you're
423
+ ","13:52
424
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
425
+ 141,"talking to people and so forth and maybe you you're i feel like most people watching this are probably downloading games
426
+ ","13:57
427
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
428
+ 142,"um i think gamestop might serve a different target customer where um not everyone has an amazon prime account
429
+ ","14:04
430
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
431
+ 143,"i have that up uh what is it like um yeah 112 million
432
+ ","14:09
433
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
434
+ 144,"members amazon prime as of december 2019. that's not every like everyone just
435
+ ","14:15
436
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
437
+ 145,"thinks oh you just buy it on amazon that's it and uh but like not everyone has an amazon prime account some people
438
+ ","14:20
439
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
440
+ 146,"do want to shop at brick and mortar maybe they want this i'm going to just list and stuff that's already here they want the trade and value they want these
441
+ ","14:26
442
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
443
+ 147,"things and that's not to say that you have these things or you want these things and so forth or that these are an issue
444
+ ","14:32
445
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
446
+ 148,"for you perhaps they're not i'm willing to bet that they're not because if you're in a situation where you're watching this video um
447
+ ","14:38
448
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
449
+ 149,"then i've yeah it just depends i don't have time to get into all that right now but
450
+ ","14:44
451
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
452
+ 150,"um yeah so that's the way why i think digital risks are overblown i still think physical um is here for at least a few
453
+ ","14:50
454
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
455
+ 151,"more years in particular this console cycle i still think it's going to be relevant and i think that physical disk version
456
+ ","14:55
457
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
458
+ 152,"is is going to outsell the digital version let me know what you think for the for the new xbox and playstation consoles uh all right so
459
+ ","15:02
460
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
461
+ 153,"the next one is let me move this back out of the way negative sentiment is overdone so this
462
+ ","15:08
463
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
464
+ 154,"is some of the heaviest negative sentiment i've i've seen with the stock i um
465
+ ","15:14
466
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
467
+ 155,"just about i mean it there's just so many different ways people are negative about gamestop
468
+ ","15:19
469
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
470
+ 156,"about its stock about its future business and so i just jotted down a couple just for fun uh these are these aren't all true exact
471
+ ","15:26
472
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
473
+ 157,"quotes people have said to me but haven't shopped there in years or my friends haven't shopped there in years you can download everything digital's
474
+ ","15:32
475
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
476
+ 158,"the future gamestop's the next blockbuster that's a popular one people just they say oh gamestop's a
477
+ ","15:37
478
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
479
+ 159,"possible investment they go oh no no that's the next blockbuster and then they just move on they go that's the end of the discussion
480
+ ","15:42
481
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
482
+ 160,"that no one wants to look under the hood the terminal value is zero um with the
483
+ ","15:47
484
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
485
+ 161,"poor managerial decisions they like blame past managerial decisions as a reason not to invest in gamestop brick and
486
+ ","15:52
487
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
488
+ 162,"mortar is dead anything brick and mortar is a bad investment so amazon that's the end of the discussion did you just say amazon
489
+ ","15:59
490
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
491
+ 163,"anyone if amazon can compete with you then you're dead and then and then the pandemic so there's some
492
+ ","16:04
493
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
494
+ 164,"there's some legitimacy to some of these things i'm not saying i'm not saying that these things are all ridiculous i'm not saying that
495
+ ","16:10
496
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
497
+ 165,"i'm saying that that it's just so much of it that i think that's a a part of the reason that it's weighing
498
+ ","16:16
499
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
500
+ 166,"on gamestop gamestop stock price so much in july 2020 because it's really heavy it's
501
+ ","16:22
502
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
503
+ 167,"really heavy to get out from underneath that it's a reason part of the reason you see such heavy short interest as well
504
+ ","16:28
505
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
506
+ 168,"but i think this is so this has led to an opportunity that that's that's what i think but um yeah so just so much negative
507
+ ","16:36
508
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
509
+ 169,"commentary i just think that this sentiment is so negative that it's overdone that's what i'm trying to get at in this section and also with these game stop bears i
510
+ ","16:43
511
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
512
+ 170,"you've read some of these articles or some other some of the commentary on this and i think people because they
513
+ ","16:48
514
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
515
+ 171,"themselves this one i was trying to get out too they seem to falsely impute behaviors to others like they themselves not but might not be customers of gamestop
516
+ ","16:55
517
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
518
+ 172,"or if they have bought physical disks they have the ability to to resell it on ebay or something like that or
519
+ ","17:01
520
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
521
+ 173,"they just download everything and i think what happens is the people who are opining on gamestop as an investment
522
+ ","17:07
523
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
524
+ 174,"they're they're the loudest right but they don't they're not they're just not customers or they are their friends or family on customers too
525
+ ","17:14
526
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
527
+ 175,"and when they have that reason when that happens they they um i don't know maybe they're not digging deep enough or maybe i'm wrong i mean i might
528
+ ","17:20
529
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
530
+ 176,"be wrong about this too but i think people are thinking that everyone else behaves the way that they behave
531
+ ","17:26
532
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
533
+ 177,"and i think that could be a mistake in this case because from what it seems to me that there are
534
+ ","17:32
535
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
536
+ 178,"still people shopping though there remains demand and just because of people talking about it don't have it doesn't mean it's not there i think i think this
537
+ ","17:38
538
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
539
+ 179,"is my thesis you're welcome to to tear to shreds feel free i encourage you to please
540
+ ","17:44
541
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
542
+ 180,"comment on this video or talk to me on the live stream about it because as you can tell i'm really curious about this and also many of the people who are who
543
+ ","17:51
544
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
545
+ 181,"are negative on gamestop they don't seem to be security analysts and you may some of you may think that may not matter but it does
546
+ ","17:58
547
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
548
+ 182,"like this is the opportunity for like a value investor is that yes i'm analyzing a business model right
549
+ ","18:03
550
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
551
+ 183,"i mean that's important for some people that's all that matters but when you're analyzing a security like you can have i don't think
552
+ ","18:10
553
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
554
+ 184,"gamestop's terminal value is necessarily zero but even if it were that doesn't mean game stops a bad
555
+ ","18:15
556
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
557
+ 185,"investment right now and i think that's lost on some folks because they're not bona fide security analysts and so if
558
+ ","18:20
559
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
560
+ 186,"let's say you've been right about the industry the past five years or so maybe you're just a gamer um or um
561
+ ","18:27
562
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
563
+ 187,"an investor who's just reading some of the headlines and you see the trend towards digital and you and you can you're kind of like all right this is probably
564
+ ","18:33
565
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
566
+ 188,"inevitable but you don't start looking at the hood you're not looking at the balance sheet you're not looking at historical uh free casual margins or what to expect
567
+ ","18:40
568
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
569
+ 189,"in the future or something like that and i think if you're not a security analyst and in digging into the stuff it gets lost
570
+ ","18:46
571
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
572
+ 190,"in you that doesn't mean the security analysts are always right we make mistakes and we might be wrong on this one but when i see that when i see a bearish say
573
+ ","18:53
574
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
575
+ 191,"seeking elf article out there um and i read through it and i think no this isn't this doesn't this isn't like
576
+ ","18:58
577
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
578
+ 192,"security analysis to me you you know you know you're not telling me the things that i want to hear if i if i were trying to build
579
+ ","19:04
580
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
581
+ 193,"a bearish position on the stock then i think all right then that's something to be wary of my my i perk up a bit
582
+ ","19:11
583
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
584
+ 194,"so yeah that's it that's just this negative sentiment just seems so heavy and i think that's why we're where we are today at uh i mean sub four
585
+ ","19:17
586
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
587
+ 195,"dollars in july 2020 that's that's surprising me maybe earlier this year and last year
588
+ ","19:24
589
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
590
+ 196,"and stuff but so close to the console refresh that's something that's something okay so then finally value is being
591
+ ","19:30
592
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
593
+ 197,"overlooked i think oh i wouldn't like to keep this on the same page i need a drink i'm just going to stop you know
594
+ ","19:39
595
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
596
+ 198,"all right so so because of these like first two things i feel like um no one's looking under the hood i already said
597
+ ","19:44
598
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
599
+ 199,"that but there's a lot of things that are happening fundamentally that um that that one could be excited about myself
600
+ ","19:50
601
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
602
+ 200,"included so like there's a new board of directors um there's a new management team and so that's what i mean people criticize
603
+ ","19:56
604
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
605
+ 201,"gamestops historical decisions their poor acquisitions and so forth um and maybe um your poor operational
606
+ ","20:03
607
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
608
+ 202,"decisions whatever it is but it's all right cool cool yeah that's that's fair but we have a new manager team right now that's not to say they're
609
+ ","20:10
610
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
611
+ 203,"going to hit it out of the park that's not the point the point is just that it has changed and so far i have to say they seem
612
+ ","20:15
613
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
614
+ 204,"somewhat comp somewhat competent um i mean they just got reggie to the board too i feel like that's big
615
+ ","20:20
616
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
617
+ 205,"but then you got sherman for the management team he's only been here just over a year he's just getting started he needs a little bit of time
618
+ ","20:26
619
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
620
+ 206,"i know barry he voiced his opinion on the new board seats and he he uh he wasn't in favor of hester perman i kind of get that i i don't it's
621
+ ","20:34
622
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
623
+ 207,"a marginal impact on the bull thesis it's okay that has to impermit they seem like they they they know they
624
+ ","20:40
625
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
626
+ 208,"get their finger on the pulse i don't think it makes that big of a difference but i kind of get where burry's coming from because it kind of feels like
627
+ ","20:45
628
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
629
+ 209,"management's been doing some good things over the past 12 months in the right direction and we'll get to
630
+ ","20:50
631
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
632
+ 210,"some of this stuff as i work through this bullet point list but i just mean so far from my pers from it just looks like
633
+ ","20:56
634
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
635
+ 211,"they're they're competent they're doing the right things and as a value investor you need to see that because if they don't you kind of need stuff to go
636
+ ","21:04
637
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
638
+ 212,"you need a lot of a lot of stuff to go right i don't want to say that but it's just an important element of of
639
+ ","21:09
640
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
641
+ 213,"this type of a thesis and one of the ways they've been showing that they they know what they're doing or
642
+ ","21:14
643
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
644
+ 214,"they're seeming competent competences they've been cutting costs so they talk about cutting costs there's one thing to talk about into one thing to actually do it they seem like they're doing it that
645
+ ","21:19
646
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
647
+ 215,"so um they're cutting costs um in fact while i go part of what i want to do
648
+ ","21:26
649
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
650
+ 216,"here during this video is i want to review some of the fundamentals and we'll get to this but i just want to
651
+ ","21:31
652
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
653
+ 217,"review a couple more things as i do this ah sorry about that
654
+ ","21:37
655
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
656
+ 218,"um they've kind of reducing cost of goods sold so it's identifying the stores testing it
657
+ ","21:42
658
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
659
+ 219,"and we're improving working capital management um a lot of people talk about this but they seem like they're actually doing it
660
+ ","21:48
661
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
662
+ 220,"um they can make better capital allocation decisions you can see them selling assets actively testing stores uh they're not
663
+ ","21:54
664
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
665
+ 221,"making any dumb acquisitions like you like this this is just stuff that's it demonstrates to me that
666
+ ","22:00
667
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
668
+ 222,"they're on they could be on the right path that um they could be um like when you're selling assets like
669
+ ","22:05
670
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
671
+ 223,"in this year when it's a it's a tough year for gamestop and they're selling the jet
672
+ ","22:10
673
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
674
+ 224,"selling doing some sale lease back um some sale lease back things just to generate a little bit extra cash that
675
+ ","22:16
676
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
677
+ 225,"cash goes a long way right now and um and of course testing the store that feeds into longer term things right
678
+ ","22:22
679
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
680
+ 226,"but this stuff's important and then improve flexibility they have right now because of the refinancing they extended the maturities and they
681
+ ","22:27
682
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
683
+ 227,"got rid of some covenants like i'm listing a whole bunch of things here that but like how not enough people were talking about
684
+ ","22:34
685
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
686
+ 228,"this stuff this is what i mean like the stock price it seems it's gone nowhere for 12 months but the fundamental events that have been
687
+ ","22:40
688
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
689
+ 229,"unfolding are like objectively positive i um it things are they've been
690
+ ","22:45
691
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
692
+ 230,"incrementally improving and that that the price is still flat is surprising to me um
693
+ ","22:51
694
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
695
+ 231,"they have adequate liquidity now to get through the console refresh and for a potential turnaround it might be still too early to that when i say potential
696
+ ","22:57
697
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
698
+ 232,"turnaround i mean like re revamping their business model to be like they could be here in 20 years right now i'm not sure about 20 years
699
+ ","23:03
700
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
701
+ 233,"right not many people are but they might have enough liquidity especially to get to the console refresh and can generate some extra cash they
702
+ ","23:08
703
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
704
+ 234,"might be in a good position tough call but definitely enough liquidity that i don't people talk about gamestop going bankrupt and stuff i
705
+ ","23:15
706
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
707
+ 235,"uh if you're saying gamestop going back over you need to you need to you need to show your work on that one
708
+ ","23:22
709
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
710
+ 236,"because i don't see it at all it highly highly highly highly unlikely to happen
711
+ ","23:27
712
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
713
+ 237,"um i it's hard for me to take those types of these that type of a thesis seriously so um
714
+ ","23:33
715
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
716
+ 238,"i'd be i'd be wary of that um anyway gamestop still remains highly
717
+ ","23:39
718
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
719
+ 239,"relevant too they got six billion in revenues at the tail end of a console cycle they have one billion during the
720
+ ","23:44
721
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
722
+ 240,"the um latest quarter q1 look at this this was they had to uh
723
+ ","23:50
724
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
725
+ 241,"um that would be dealing with the pandemic end of a console cycle they literally had to close their doors and
726
+ ","23:56
727
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
728
+ 242,"they still generate a billion dollars in sales like a billion dollars and then i talked to my family and
729
+ ","24:02
730
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
731
+ 243,"friends they go yeah no one shops there anymore i'm like how do you do a billion dollars how do you do a billion dollars and anyway i know free cash flow is what
732
+ ","24:07
733
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
734
+ 244,"matters but still that's telegraphing to me like people are still shopping here and yes everyone see everyone will focus on the year over year declines right
735
+ ","24:13
736
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
737
+ 245,"yeah let me drink um it's just that sheer level that
738
+ ","24:19
739
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
740
+ 246,"sticks out to me first um yeah so um let me get back to this
741
+ ","24:26
742
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
743
+ 247,"so i like to see it six billion in revenues is legit that's that's a good size that's a good sometimes you come across a company it
744
+ ","24:31
745
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
746
+ 248,"might only be um like a billion dollars two billion reverse to two billion revenues especially like a retail company and i think all right well as
747
+ ","24:37
748
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
749
+ 249,"um it's gonna fall off a cliff tomorrow and you might say game stops revenues are currently falling off a cliff but if you're still
750
+ ","24:43
751
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
752
+ 250,"at a billion dollars right now with a new console cycle on the way that that
753
+ ","24:48
754
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
755
+ 251,"that's um that's legitimate and um yeah six billion is a good size is good size
756
+ ","24:54
757
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
758
+ 252,"um okay so significant operating leverage because of this it's trading at just four
759
+ ","25:00
760
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
761
+ 253,"percent of these revenues i you don't see too many companies traded four percent of of revenues with this
762
+ ","25:06
763
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
764
+ 254,"type of a financial situation like usually you see that and often when you see that companies
765
+ ","25:11
766
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
767
+ 255,"might be going bankrupt in the near-term future and like i said i think that's highly unlikely with gamestop so four percent of revenues with a new
768
+ ","25:18
769
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
770
+ 256,"console cycle i think what the hell what so anyway if the things just go a
771
+ ","25:23
772
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
773
+ 257,"little bit right then that that operating leverage can lead to a a huge rise in the share price due to a
774
+ ","25:30
775
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
776
+ 258,"realization of what fair value is all right so then just the company's been historically successful at
777
+ ","25:36
778
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
779
+ 259,"generating free cash flow this is the the next um item that i had on that list if we just pull up simple free cash flow
780
+ ","25:42
781
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
782
+ 260,"here in fact let me scroll over to just these are this side over here ignore the conditional formatting i didn't clean it
783
+ ","25:47
784
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
785
+ 261,"up but uh if we look at simple free cash flow this column this row here that's operating cash flow less cap x
786
+ ","25:54
787
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
788
+ 262,"look at they were generating half a billion dollars there for a couple years and uh it's just been historically
789
+ ","25:59
790
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
791
+ 263,"positive this is rolling 12 months so this is through q1 2020. if you look at
792
+ ","26:04
793
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
794
+ 264,"fiscal year um 19 got a little bit wonky because they were aggressively paying down some accounts payables and
795
+ ","26:11
796
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
797
+ 265,"uh they're trying to work on working capital they're definitely close to burning cash
798
+ ","26:16
799
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
800
+ 266,"right now i we don't need to get into the the specifics but anyway but if you go you go to the rolling 12 months and you
801
+ ","26:22
802
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
803
+ 267,"start seeing they've been positive generating positive free capsule this whole time um really impressive you don't see that
804
+ ","26:28
805
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
806
+ 268,"too often and it doesn't mean it's what's going to happen in the future i just mean it just sticks out to me and then generating 500 million and that
807
+ ","26:34
808
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
809
+ 269,"type of i call it simple free cash flow that's um that stands out to me so yeah and despite i think that i know
810
+ ","26:40
811
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
812
+ 270,"hester and permanent comment on this too but i think they've had bloated costs in the past i think sg a selling general and administrative
813
+ ","26:45
814
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
815
+ 271,"expenses seem to be pretty high and uh they probably could have been doing a better job of managing that working comp working capital i think
816
+ ","26:51
817
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
818
+ 272,"that previous manager team was just a little bit lazy on that front they were kind of just riding
819
+ ","26:56
820
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
821
+ 273,"riding the wave of the business model and they weren't really trying to do a diligent job of managing the operations
822
+ ","27:02
823
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
824
+ 274,"and so they were still generating a ton of free cash flow that is pretty pretty impressive so um oh yeah but it seems to be overlooked
825
+ ","27:09
826
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
827
+ 275,"a little bit okay so then and then right now 260 million market cap give or take
828
+ ","27:15
829
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
830
+ 276,"and i think let's it this is trading at what i perceive to be a discount to the fair net asset value to fair book value
831
+ ","27:21
832
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
833
+ 277,"of around 400 million give or take plus a conservative estimate of future free cash flow so this is where i spend a little bit of time
834
+ ","27:26
835
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
836
+ 278,"on in this video i don't know where i'm at right now and time-wise but let's just dig into this just a little
837
+ ","27:32
838
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
839
+ 279,"bit um just take a peek at the balance sheet and when you look at the balance sheet
840
+ ","27:37
841
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
842
+ 280,"like doesn't it stick out to that cash position of 570 million to a market cap of 260 million like holy
843
+ ","27:44
844
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
845
+ 281,"[ __ ] right i mean you don't see that that often um usually when you see that it's it paints a really dire picture for the company
846
+ ","27:50
847
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
848
+ 282,"and maybe that's why this price is is in the gutter but it doesn't deserve to be in my opinion and i think people might
849
+ ","27:56
850
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
851
+ 283,"be thrown off by some of these things and accounts receivables let's
852
+ ","28:02
853
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
854
+ 284,"say the thing so if companies not going bankrupt we can assess these things with gamestop being a going concern and if that's the case you don't need to
855
+ ","28:07
856
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
857
+ 285,"discount them too heavily so i'm right i'm pulling up this balance sheet just to assess the quality of book value so right now we have book value of
858
+ ","28:12
859
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
860
+ 286,"about 435 million and the question is is that a legitimate is that a fair estimate of what book
861
+ ","28:17
862
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
863
+ 287,"value is if the company were to like sell all these assets and distribute it to shareholders it's not a true liquidation i'm not i
864
+ ","28:23
865
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
866
+ 288,"want to do a liquidation analysis because i don't think the company's going bankrupt they just want to just a quick assessment of what what
867
+ ","28:29
868
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
869
+ 289,"their assets are currently worth that's what i'm going through like cash you know that's pretty legitimate value they're 570 million
870
+ ","28:34
871
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
872
+ 290,"receivables also pretty decent um you can you can kind of bet on that to a degree maybe 50 million 60 million merchandise
873
+ ","28:42
874
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
875
+ 291,"inventories you see the big decline in inventories they've been trying to been working on
876
+ ","28:47
877
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
878
+ 292,"improving their working capital management and i'd like to think i have i don't like to think i it would be nice if the inventory that
879
+ ","28:53
880
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
881
+ 293,"they're selling off has been the lower margin or um um inventory in
882
+ ","28:58
883
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
884
+ 294,"less demand and so forth so it's only higher quality inventory that's left over and actually if you look at the 10k this
885
+ ","29:04
886
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
887
+ 295,"is q1 but if you look at the 10k and you start going through the footnotes and analyzing the inventory it kind of looks like that a good chunk of
888
+ ","29:11
889
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
890
+ 296,"the inventory the majority of their inventory is higher quality inventory and by that i mean newer hardware newer software and if
891
+ ","29:18
892
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
893
+ 297,"that's the case um that might this inventory dollar amount might be
894
+ ","29:23
895
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
896
+ 298,"pretty pretty accurate and some people look at gamestop inventory and they go think oh oh that's used games that's
897
+ ","29:29
898
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
899
+ 299,"probably not what's worth what it's on the books as but this stuff's carried at costs even those used games the older used games that
900
+ ","29:35
901
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
902
+ 300,"they have if many of you may know they're paying a small fraction of what they ultimately sell it
903
+ ","29:41
904
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
905
+ 301,"for i know people complain about that but it's carried in the books at that cost that what they paid for it so even if it
906
+ ","29:46
907
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
908
+ 302,"might not be selling at the sale price they hope in theory you'd think that they could potentially get in the ballpark of cost
909
+ ","29:52
910
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
911
+ 303,"maybe not but that's what i mean and if the inventory is is indeed higher quality newer and so forth and that inventory
912
+ ","29:58
913
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
914
+ 304,"figure is probably in the ballpark of reality and prepaid expenses is a going concern that's probably a fair value of that
915
+ ","30:05
916
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
917
+ 305,"maybe a slight discount assets held for sale i think that's the jet but they sold it like the week later so that's done
918
+ ","30:10
919
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
920
+ 306,"um and i mentioned the the warehouses in the distribution facilities that they're they're hoping to do a sale lease back
921
+ ","30:17
922
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
923
+ 307,"on um that it's not it's not under assets held for sale it's it's elsewhere
924
+ ","30:22
925
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
926
+ 308,"probably under property and equipment but um that's another thing that's held for sale right now that will uh generate some cash just something
927
+ ","30:28
928
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
929
+ 309,"that that's the thing i didn't toss it on the bullet point but there's another there's another cash generating thing that they're doing um
930
+ ","30:34
931
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
932
+ 310,"that's gonna this balance sheet's gonna be modified it already is modified right it's almost um we're in july here q2 is
933
+ ","30:40
934
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
935
+ 311,"almost over but um yeah um forget the leases i don't want to get into leases right now it's
936
+ ","30:46
937
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
938
+ 312,"uh i disagree with how they're handled on the balance sheet it kind of interferes with my analysis
939
+ ","30:53
940
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
941
+ 313,"and there's a contra account in the liability checks and we don't need to get into this now but um
942
+ ","30:58
943
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
944
+ 314,"deferred income taxes that has value um as a going concern and so forth and then
945
+ ","31:04
946
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
947
+ 315,"other non-current assets and i don't know where it's in here but they also have the game and former magazine which uh
948
+ ","31:09
949
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
950
+ 316,"i mean i don't know how much that's worth everyone likes i get i know game and former magazine you automatically get it when you're a subscriber to
951
+ ","31:15
952
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
953
+ 317,"gaming uh uh to the um to the remember the gamestop membership account oh by the way they have 42 i should have mentioned
954
+ ","31:21
955
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
956
+ 318,"they said 42 million members i think that's what hester perman's uh presentation said so people say people
957
+ ","31:27
958
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
959
+ 319,"don't shop there it's like there another reason they're incentivized to shop there they have that membership which gives them some some perks and stuff but
960
+ ","31:32
961
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
962
+ 320,"42 million anyway um they um along with that membership they get the
963
+ ","31:38
964
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
965
+ 321,"subscription to game informer and maybe not everyone reads it but something like i think i have the do i have it up
966
+ ","31:45
967
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
968
+ 322,"yeah here it is okay so the game form magazine they have yeah look at this so this is the top
969
+ ","31:51
970
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
971
+ 323,"um subscriptions in the united states in game informer um number five on the list with six
972
+ ","31:58
973
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
974
+ 324,"million in subs so um yeah like i said i know not everyone necessarily reads it because you get it with the membership and so forth but
975
+ ","32:04
976
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
977
+ 325,"that's a lot of eyeballs on there i mean you don't have a fraction of reading them and then you see something like time number 13
978
+ ","32:10
979
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
980
+ 326,"i think that sold for a couple years ago for just under 200 million i think i had looked that up recently
981
+ ","32:17
982
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
983
+ 327,"and um in time i mean people are subscribing to that and i'm sure it's generating
984
+ ","32:22
985
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
986
+ 328,"probably more free casual than game informer again if if people uh i don't know what the breakdown is for how many people are paying for that
987
+ ","32:28
988
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
989
+ 329,"subscription and stuff nor how many are reading it and so forth but if times getting close to 200 million
990
+ ","32:34
991
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
992
+ 330,"and uh i mean what matters is if game informer is making money right i get that part but it seems like an asset for one of the uh a thriving
993
+ ","32:41
994
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
995
+ 331,"industry like gaming and you got one of the top magazines it's a question of how much it's generating but nevertheless we can
996
+ ","32:47
997
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
998
+ 332,"it that the the name brand itself probably has some value so it's just another asset that could in theory
999
+ ","32:52
1000
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1001
+ 333,"potentially be monetized i just i don't know what the value is i don't need to this is the good thing about being a value investor
1002
+ ","32:58
1003
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1004
+ 334,"it's like my default like ah okay it's on the books just because you come across so many companies where they
1005
+ ","33:03
1006
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1007
+ 335,"don't have these assets they don't have leverage to pull that's what i'm trying to convey here with gamestop they have leverage to pull
1008
+ ","33:09
1009
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1010
+ 336,"and this is just another example of it so i'm not sure where it is on the balance sheet uh maybe this other
1011
+ ","33:15
1012
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1013
+ 337,"maybe property and equipment i'm not sure but it's on there that's on there and then you get to the liabilities and all the liabilities are pretty fair
1014
+ ","33:21
1015
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1016
+ 338,"crude accounts payable accrued liability so actually some of these are probably like
1017
+ ","33:26
1018
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1019
+ 339,"this one game like gift cards and stuff like this i mean like that's kind of a it's a legitimate liability but kind of
1020
+ ","33:31
1021
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1022
+ 340,"a soft liability um and then the operating leases we can forget about those the current portion
1023
+ ","33:37
1024
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1025
+ 341,"long-term debt this has already changed because of that bond exchange they did um yeah they were able to extend the maturity a couple of years and they got
1026
+ ","33:43
1027
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1028
+ 342,"rid of some covenants because of it over 50 percent agreed to do it and that's just that's huge news and uh and
1029
+ ","33:51
1030
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1031
+ 343,"because it gets them to the console cycle and it gets them to the point where they'll they could potentially have much more
1032
+ ","33:56
1033
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1034
+ 344,"free cash flow to navigate their their uh their situation but anyway so they just it's changed and uh the line of credit
1035
+ ","34:04
1036
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1037
+ 345,"also they have some unpaid rent too we mustn't forget that it's in here somewhere somewhere probably accrued liabilities and stuff but um
1038
+ ","34:11
1039
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1040
+ 346,"but they have the the revolver too which is almost certainly changed now that it's july but um although um
1041
+ ","34:18
1042
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1043
+ 347,"some other long-term okay moved into new other long-term liabilities and then total anyway so as we work through this and we
1044
+ ","34:24
1045
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1046
+ 348,"look through all this then you see book value of about also i like to see sorry retained earnings of that 1.3 billion
1047
+ ","34:30
1048
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1049
+ 349,"they've since had write-downs right because all those acquisitions they had they wrote them all down probably some inventory and stuff
1050
+ ","34:35
1051
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1052
+ 350,"but i'd like to see good retained earnings because it proves the company was at some point historically at some point profitable so that's what
1053
+ ","34:41
1054
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1055
+ 351,"i mean legitimate business model historically anyway now you see stockholders equity after major write-downs and stuff
1056
+ ","34:48
1057
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1058
+ 352,"um that's the thing if you hadn't seen major write-downs then you might think that there might be some on the horizon right around the corner and stuff but we
1059
+ ","34:53
1060
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1061
+ 353,"already have them at least especially the soft stuff like goodwill you should just assume goodwill's just a future right down when
1062
+ ","34:59
1063
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1064
+ 354,"you see especially if a company is battling risks and stuff but now at 435 million
1065
+ ","35:04
1066
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1067
+ 355,"um i know it's not a liquidation analysis and stuff but uh that's it seems to me in the ballpark it's to
1068
+ ","35:09
1069
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1070
+ 356,"get that fat cast position too so yeah it just seems to be in the ballpark so it's meaningful because
1071
+ ","35:15
1072
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1073
+ 357,"the market caps at 260 right now so not a bad margin of safety but in addition to that there's also the
1074
+ ","35:20
1075
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1076
+ 358,"opportunity for future free cash flows right so if i pull up this um this is my one of
1077
+ ","35:25
1078
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1079
+ 359,"the fundamental spreadsheets that i have and this is where i perform the analysis i know i just had this open but
1080
+ ","35:32
1081
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1082
+ 360,"um let's just poke let's just look at a couple things in particular that stick out to me i mentioned the revenues we're at six billion people focus on this
1083
+ ","35:38
1084
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1085
+ 361,"year-over-year decline right it's alarming that's a fair point it is alarming but people are overly focused on that
1086
+ ","35:45
1087
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1088
+ 362,"what i'm seeing is just the share level 6 billion but also the historically fairly stable revenues surprisingly
1089
+ ","35:51
1090
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1091
+ 363,"stable um but 9 billion it's a big company good sized company i should say not a big
1092
+ ","35:57
1093
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1094
+ 364,"company but also but also noteworthy is it it was fairly stable through the last console
1095
+ ","36:02
1096
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1097
+ 365,"refresh right that's that matters um and then you have the switch too sometimes these are staggered
1098
+ ","36:08
1099
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1100
+ 366,"switch was a couple years back that's stabilizing things a bit but um but anyway you see this big drop
1101
+ ","36:14
1102
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1103
+ 367,"down and this year i think because so much is going on tail end of a console cycle um people withholding purchase and so
1104
+ ","36:20
1105
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1106
+ 368,"forth and the pandemic but i think this big drop down as opposed to it being fairly stable like i
1107
+ ","36:26
1108
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1109
+ 369,"don't as opposed to it being fairly stable i think you might get a big jump next year year over year maybe i don't know
1110
+ ","36:32
1111
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1112
+ 370,"i'm just theorizing but um so anyway that's what she'll be focused on and then we also
1113
+ ","36:38
1114
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1115
+ 371,"got i like grow look at check out gross margin so gross margin is a good one because usually with companies that are
1116
+ ","36:43
1117
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1118
+ 372,"deteriorating everything's falling apart you see gross margin deteriorating as well like they can't management can't control
1119
+ ","36:49
1120
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1121
+ 373,"costs they're losing control of stuff but check out gross markets like holding up fairly well this is three or average
1122
+ ","36:55
1123
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1124
+ 374,"but even the three year average through 2020 28 it was only 27 percent in 2012 but at
1125
+ ","37:00
1126
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1127
+ 375,"the uh right before the last consoles uh the last console cycle ended and so that's pretty good they're
1128
+ ","37:07
1129
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1130
+ 376,"keeping it together and if we scroll over and start looking at individual individual years we see gross margin 29 this year above the past two years so
1131
+ ","37:14
1132
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1133
+ 377,"even despite a huge sell-off a huge decline in revenues gross margins holding up pretty well
1134
+ ","37:19
1135
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1136
+ 378,"and i see that and i think okay all right that's that's important to see right now but also is management doing a
1137
+ ","37:24
1138
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1139
+ 379,"good job right now of of um focusing on higher margin stuff perhaps that's what i'd like to say if
1140
+ ","37:30
1141
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1142
+ 380,"this were down another year be like oh it'd be less i believe less in the new management team but it's holding up okay
1143
+ ","37:37
1144
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1145
+ 381,"and like i said it's even i mean it's on par with where it was in 2014 and above 2012 and stuff that's okay that's
1146
+ ","37:43
1147
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1148
+ 382,"good but then you see sg a another important expense i i focus first on gross margin because like those costs are going to be
1149
+ ","37:50
1150
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1151
+ 383,"more difficult to manage i think but sg a i feel like this is a a more easily fixed problem um
1152
+ ","37:57
1153
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1154
+ 384,"and if you see this it's been ballooning in recent years it used to be 16 17 18 as a percentage of revenues
1155
+ ","38:02
1156
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1157
+ 385,"right and then it's been increasing past couple years part of that is because the denominator's declining right revenues
1158
+ ","38:08
1159
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1160
+ 386,"are going down but um it's not that alarming for me because it's fixable to me i feel like
1161
+ ","38:13
1162
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1163
+ 387,"you can um and i think pe firms are noticing this too i think a lot and all the activists talk about this too but
1164
+ ","38:19
1165
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1166
+ 388,"this is stuff that could be improved so it's not that i'd be more concerned with with the gross margin deteriorating than i would
1167
+ ","38:25
1168
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1169
+ 389,"be sg a margin and yes i see this big jump up and you see new management well how come
1170
+ ","38:31
1171
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1172
+ 390,"new management isn't raining this end there's a good question they need to maybe this i think this could take a little bit more time to
1173
+ ","38:37
1174
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1175
+ 391,"to to bring back and especially because of such a big decline in revenues we'll see where that it's had in the coming years but
1176
+ ","38:43
1177
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1178
+ 392,"something to keep your eye on all right so that's it and then then simple free castle so i already brought
1179
+ ","38:48
1180
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1181
+ 393,"up simple free cash flow right but let's focus if we're trying to do some forecasting just some light forecasting i promise i promise it'll be
1182
+ ","38:54
1183
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1184
+ 394,"light i think it's helpful to let's look at simple free cash flow margin
1185
+ ","39:01
1186
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1187
+ 395,"forget the aggregate numbers but if we look at what it was over the past over the past cycle right this is through
1188
+ ","39:06
1189
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1190
+ 396,"um may 3rd 2014 through today those what's that seven years we see an average if you go down here go to
1191
+ ","39:11
1192
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1193
+ 397,"average on google sheets an average of 3.4 percent um but for those first couple years you saw
1194
+ ","39:17
1195
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1196
+ 398,"an average of 4.9 but you obviously you cannot forecast
1197
+ ","39:22
1198
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1199
+ 399,"that into the future um but i like nevertheless that's a good starting point that's what i mean people
1200
+ ","39:28
1201
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1202
+ 400,"start that's the starting point you need to look at how a company's performed over the over the past
1203
+ ","39:34
1204
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1205
+ 401,"and then i think and then try to determine how has the situation changed from how it was performing
1206
+ ","39:39
1207
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1208
+ 402,"back then there's been a a meaningful change the past couple years the shift to digital right that's meaningful
1209
+ ","39:44
1210
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1211
+ 403,"um and it's so much so that not only can we not start using five percent free casual margin i don't even think
1212
+ ","39:51
1213
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1214
+ 404,"obviously the past couple years it's been much lower but i don't even think 3.4
1215
+ ","39:58
1216
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1217
+ 405,"should be used uh for forecasting i don't even think half of that should be used like i wouldn't even use three percent two
1218
+ ","40:03
1219
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1220
+ 406,"percent i wouldn't even use one percent because as a value investor i'm just trying to make sure my downside is um is protected and for that reason i
1221
+ ","40:12
1222
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1223
+ 407,"don't want to i don't want to be too optimistic of my forecast so i've i propose that we use like 20 percent
1224
+ ","40:18
1225
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1226
+ 408,"i've been thinking 20 percent of what that free cash flow margin was so instead of 3.4 percent everyone get your graphing calculators
1227
+ ","40:24
1228
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1229
+ 409,"out right uh point zero three four times point two point six eight percent now now we're
1230
+ ","40:31
1231
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1232
+ 410,"point six eight percent that's on that's lower that's almost is that the lowest if i if i add a decimal place there can i do that
1233
+ ","40:37
1234
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1235
+ 411,"0.59 so it's not the lowest but it's pretty low 0.68 percent so if we forecast out 0.68 simple free
1236
+ ","40:43
1237
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1238
+ 412,"cash flow f margin moving forward then it's also a question of which what revenue should we forecast to try to get what the
1239
+ ","40:49
1240
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1241
+ 413,"future free cash flows would be so at this point we're using the that figure so we can look to
1242
+ ","40:54
1243
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1244
+ 414,"revenues we just gotta forecast our revenues that's what i mean we're just using a simplistic cash flow analysis here simple free cash
1245
+ ","41:00
1246
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1247
+ 415,"flow margin revenues what do we think revenues will be moving forward we could say we'll get back to eight
1248
+ ","41:07
1249
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1250
+ 416,"billion nine billion i think no way right there's no way you can forecast in a taking back out the previous highs in
1251
+ ","41:12
1252
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1253
+ 417,"theory it's possible i don't even want to go down that path because i don't i'm not concerned with what's possible i'm concerned with
1254
+ ","41:18
1255
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1256
+ 418,"what's probably most likely um and so i don't even so you could maybe
1257
+ ","41:25
1258
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1259
+ 419,"we'll see a jump maybe we don't get back to eight maybe we get back to seven billion uh or maybe we get to 6.5 million remember i talked about a potential leap
1260
+ ","41:31
1261
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1262
+ 420,"this is through q1 though through q2 and q3 we should see continued declines in revenues it
1263
+ ","41:36
1264
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1265
+ 421,"will be lower than this so i propose for forecasting we free forecasts i've been thinking like 5
1266
+ ","41:41
1267
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1268
+ 422,"million in revenues over six years like or let's do six years um in that it'll be all over the place
1269
+ ","41:49
1270
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1271
+ 423,"right but if that's our average revenue figure then that's that'll be a number we can use for each year and i think that's
1272
+ ","41:55
1273
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1274
+ 424,"do you think that's decent do you think that's too high does anyone think that an average of five billion through the first six years of a console
1275
+ ","42:02
1276
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1277
+ 425,"cycle is too high for gamestop when they used to be it's almost it's not quite it's not half of what they used to
1278
+ ","42:08
1279
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1280
+ 426,"do but it seems to me somewhat conservative um as does the simple free castle module we
1281
+ ","42:13
1282
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1283
+ 427,"mentioned of 0.68 so if we use that i've already i used the online calculator just to keep it simple if i wanted to uh
1284
+ ","42:20
1285
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1286
+ 428,"to do this precisely i do in a spreadsheet but i just whip this up really quickly before i kicked off this video i don't
1287
+ ","42:26
1288
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1289
+ 429,"know if this calculator is accurate it doesn't matter because i can eyeball it and i know it's roughly in the ballpark of reality
1290
+ ","42:31
1291
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1292
+ 430,"um so what i said was i took those i did simple free cash flow margin of 0.68 times uh 5 billion over 6 years just to
1293
+ ","42:39
1294
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1295
+ 431,"keep it simple i know it will fluctuate and i get it and then i just bounced around the cash flows a little bit it all averages out
1296
+ ","42:45
1297
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1298
+ 432,"to point six eight percent um so point six eight percent times five billion is a boat i think um
1299
+ ","42:51
1300
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1301
+ 433,"was it 35 34
1302
+ ","42:56
1303
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1304
+ 434,"34 million so these averages out to about 34 35 million and then i just maybe second year they'll have the most
1305
+ ","43:02
1306
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1307
+ 435,"blah blah blah and then i use a discount rate of 20 i feel like that's pretty conservative
1308
+ ","43:07
1309
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1310
+ 436,"for the risks that are uh we're dealing with here um maybe you think it should be higher let me know
1311
+ ","43:13
1312
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1313
+ 437,"let me know but using those using these assumptions at least i'm showing you my assumptions this is what i mean
1314
+ ","43:19
1315
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1316
+ 438,"is that i see some bearish um some bearish gme comments and articles and stuff i
1317
+ ","43:24
1318
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1319
+ 439,"think just show me your numbers because i want to try to uh compare to what i'm getting maybe you think the company cannot
1320
+ ","43:29
1321
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1322
+ 440,"generate positive free cash flow moving forward i feel like a lot of people might think that but based on all that stuff that i
1323
+ ","43:34
1324
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1325
+ 441,"showed previously of this of all these things that like the
1326
+ ","43:40
1327
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1328
+ 442,"fundamental events that have been unfolding positively and why i think some stuff is overdone like you would have to explain to me
1329
+ ","43:46
1330
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1331
+ 443,"that man you'd have to say management cannot get a control of this stuff or physical they'll have zero interest within a
1332
+ ","43:52
1333
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1334
+ 444,"couple of years you'd have to be pretty bearish like you'd have to for this to be for this for these numbers that i
1335
+ ","43:57
1336
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1337
+ 445,"used to not be conservative you'd have to have the like one of the most bearish outcomes that could possibly happen doesn't mean
1338
+ ","44:03
1339
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1340
+ 446,"it can't happen it absolutely can happen but uh it just seems unlikely that that's what's what it's gonna unfold so
1341
+ ","44:10
1342
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1343
+ 447,"if this unfolds then you have present value of about 125 million plus the book value of about
1344
+ ","44:16
1345
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1346
+ 448,"let's just call it 400 million that's what i was trying to get at here then you're getting at 500 million
1347
+ ","44:21
1348
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1349
+ 449,"that's twice what the market cap is that's twice the market cap and so
1350
+ ","44:26
1351
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1352
+ 450,"that's what i think i think about gamestop i think it is it is at least a double i think
1353
+ ","44:32
1354
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1355
+ 451,"it is probably a triple but it legit could be a four to five bagger it could be
1356
+ ","44:37
1357
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1358
+ 452,"looking out i don't know looking out six to eighteen months or so um yeah so that's what i think if you
1359
+ ","44:43
1360
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1361
+ 453,"disagree with that that's fine i like i said i've been wrong about plenty of things in the past um
1362
+ ","44:48
1363
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1364
+ 454,"but i just i see has to impermanently see scion's analysis and i see my own analysis and that we all it strikes me as we're
1365
+ ","44:55
1366
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1367
+ 455,"security analysts and we're looking at this and then i get really i don't so i mean i try to come up with why it's trading where it is because i'm really
1368
+ ","45:00
1369
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1370
+ 456,"confused because i feel like other people either we're all wrong or everyone's looking at
1371
+ ","45:05
1372
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1373
+ 457,"the wrong stuff and if they've gotten the wrong impression which i've seen happen before but this is this is something this is something
1374
+ ","45:12
1375
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1376
+ 458,"because it's some of the biggest it's one of the biggest misperceptions i've seen in a while i think
1377
+ ","45:17
1378
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1379
+ 459,"ever maybe i don't know um maybe not ever i don't know but um okay so that's that so let me
1380
+ ","45:23
1381
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1382
+ 460,"know if you disagree and if you think they can't generate positive cash flow i'd be interested about that like if you think they're done
1383
+ ","45:29
1384
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1385
+ 461,"and that this is it and that they cannot do it that that's that'd be interesting to me so let me know again either in the comments to this
1386
+ ","45:34
1387
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1388
+ 462,"video or um or let me know on twitter or in the live stream or wherever the other
1389
+ ","45:40
1390
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1391
+ 463,"we talk about fundamental events right so this is the thing you see in my other videos i do uh i'll do some technical analysis and i
1392
+ ","45:45
1393
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1394
+ 464,"incorporate that into my approach but if you're really trying to make some big gains and stuff where you make the most money it's
1395
+ ","45:51
1396
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1397
+ 465,"through fundamental analysis positions like this where i'm digging into the details and i'm using technical analysis
1398
+ ","45:57
1399
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1400
+ 466,"to us to facilitate the position sometimes it is my focus sometimes technical analysis is my focus but i'm not making
1401
+ ","46:03
1402
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1403
+ 467,"the biggest money on on that type of a position um that's why you see me digging through
1404
+ ","46:09
1405
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1406
+ 468,"a lot of the fundamental stuff because it's a bigger position just because of positions in the roaring kitty model portfolio it doesn't mean i'm spending
1407
+ ","46:14
1408
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1409
+ 469,"this much time on all the positions it's just the ones that are of higher interest to me anyway now to just pull up the chart do
1410
+ ","46:20
1411
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1412
+ 470,"i already have it open i think i do um right there so here what is this this is let's do the monthly chart because
1413
+ ","46:26
1414
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1415
+ 471,"it's a monthly chart the technical analysis they see this they think oh this is terrible especially last year they saw this that you can't
1416
+ ","46:31
1417
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1418
+ 472,"touch this stock you can't touch this this looks terrible it still looks terrible from from the perspective of many technical analysts although you can
1419
+ ","46:37
1420
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1421
+ 473,"see the rsa turning a bit here it's starting to level off nevertheless oh and this was with
1422
+ ","46:42
1423
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1424
+ 474,"let's if we do oh if we do the um we can adjust for dividends by doing
1425
+ ","46:48
1426
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1427
+ 475,"this i like to do this sometimes so a dividend adjusted we were over 50 dollars back in 2013 and remember oh i
1428
+ ","46:54
1429
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1430
+ 476,"didn't even mention just remember those share count that i when i set up things that have kept my attention the share count it's been it's
1431
+ ","46:59
1432
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1433
+ 477,"been halved it's been half since the uh the previous console cycle so something to bear in mind when you look at these historical
1434
+ ","47:05
1435
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1436
+ 478,"prices and they also have enough cash and authorization to purchase another 100 million dollars worth of shares
1437
+ ","47:12
1438
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1439
+ 479,"which could get the share countdown to 40 million i don't think it's likely right now but there's a case to be made that they
1440
+ ","47:18
1441
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1442
+ 480,"should so just something to keep around for i don't think it's likely right now july 2020 i don't think it's going to happen this year but it's a possibility
1443
+ ","47:24
1444
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1445
+ 481,"if it happens look out because um yeah because that's that's going to change it even more
1446
+ ","47:30
1447
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1448
+ 482,"when you're buying back shares it's so important to buy it back below i mean book value per share or fair
1449
+ ","47:35
1450
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1451
+ 483,"value per share more importantly and because i think fair value per share is quite a bit higher i it can be a good
1452
+ ","47:40
1453
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1454
+ 484,"thing to buy back these shares and if they do it increases the per share value even more than it would otherwise so
1455
+ ","47:45
1456
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1457
+ 485,"something to keep your eye on but um um sorry i lost the chart there so here's the chart there's a good it
1458
+ ","47:51
1459
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1460
+ 486,"doesn't look that good in the monthly but starting to flatten out a bit you see the rsi moving up so if we switch it down to weekly just a three year weekly
1461
+ ","47:58
1462
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1463
+ 487,"now it starts to get kind of interesting because now it's starting to build a base right look at this uh again it was looking kind of sketchy last year and
1464
+ ","48:05
1465
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1466
+ 488,"then it comes back down then it had that big sell-off but this is the thing when you're looking at a chart you can't look at it in isolation everyone should everyone
1467
+ ","48:11
1468
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1469
+ 489,"who analyzes charts should know this i see this you think oh look at that big self what happened that week and yes they did report earnings that week but
1470
+ ","48:17
1471
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1472
+ 490,"everything was selling off that week it was a double they were retesting companies like gamestop and um some
1473
+ ","48:22
1474
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1475
+ 491,"some some of the companies i dealing with were retesting the lows that week um that first week of um last week of
1476
+ ","48:29
1477
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1478
+ 492,"march first week in april they were retesting lows anyway gamestop bounced right back it was only one week down then it comes back now it's flattening out around four
1479
+ ","48:36
1480
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1481
+ 493,"bucks so i see this i think it's building the base um it doesn't mean that's how it's going to
1482
+ ","48:41
1483
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1484
+ 494,"work out but i just mean along that base watch out because it could it could take off and then you look at a
1485
+ ","48:46
1486
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1487
+ 495,"one and a half daily and then uh you get to here if you can get to five maybe they fill the gap and
1488
+ ","48:52
1489
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1490
+ 496,"stuff we don't need to get into that that's not the point that obviously this is a fundamentals focused thesis right so why
1491
+ ","48:57
1492
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1493
+ 497,"am i even pulling up the chart just to show that things kind of feel like they're changing a little bit and because if if the chart does change a
1494
+ ","49:03
1495
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1496
+ 498,"bit and it starts to look more bullish you get other people who are piled into into it as well just not just the longer term fundamentals
1497
+ ","49:10
1498
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1499
+ 499,"focused people that's why i kind of look at this stuff because i know other people are too and if that chart turns um just people could start piling on and
1500
+ ","49:16
1501
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1502
+ 500,"then you get the short interest too i didn't want to go into hopefully it's clear the short interest wasn't a isn't a
1503
+ ","49:22
1504
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1505
+ 501,"a main point to this thesis but you need to acknowledge it it's out there could it be unwound in a systematic
1506
+ ","49:28
1507
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1508
+ 502,"manner so that nothing happens yeah probably but this is i mean i don't know enough about the mechanics of the market to uh
1509
+ ","49:33
1510
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1511
+ 503,"to be sure about that type of thing i'm not betting on a short squeeze but it seems like something where it could take place
1512
+ ","49:39
1513
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1514
+ 504,"although i think if you want a real short squeeze you'd probably want a more levered company where people were truly like it was on the verge of bankruptcy
1515
+ ","49:45
1516
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1517
+ 505,"and then suddenly it's not gamestop i don't know well you just got to see what happens but it would be nice if it
1518
+ ","49:51
1519
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1520
+ 506,"goes up really quickly but when you see all this stuff kind of adding up you need to at least consider it take it into consideration but
1521
+ ","49:57
1522
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1523
+ 507,"you have to start tart if we get closer to this one i mean we're in july console cycle's right around the corner it's still priced in the gutter it's pretty
1524
+ ","50:03
1525
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1526
+ 508,"impressive to me but next couple months maybe sentiment will start to turn char will start to turn up people start
1527
+ ","50:08
1528
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1529
+ 509,"seeing that uh i feel like people start seeing buries involved too that could help because um he's a legitimate successful value
1530
+ ","50:15
1531
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1532
+ 510,"investor knows his [ __ ] and see the activists and the management's making moves and stuff uh maybe it could happen in the this by
1533
+ ","50:22
1534
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1535
+ 511,"the end of 2020 but um probably with the thesis should unfold fully within 18 months if it
1536
+ ","50:27
1537
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1538
+ 512,"doesn't happen by then i don't know i do think gamestop is going to be it seems likely to me it's going to be bought out by a pe firm who sees what i
1539
+ ","50:34
1540
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1541
+ 513,"see and thinks all right we let's take this thing private and start um we can start taking out the free cash flows and stuff
1542
+ ","50:39
1543
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1544
+ 514,"i think that'll happen it they it almost happened a couple years ago in 2018 and at that time it was priced it looked
1545
+ ","50:45
1546
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1547
+ 515,"like the it would have been bought out between 1 billion and 2 billion something in that range 1.5 billion since then the share counts been whacked
1548
+ ","50:52
1549
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1550
+ 516,"quite a bit so if that were fair value then we're looking at a much higher stock price but what would it when would it happen
1551
+ ","50:58
1552
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1553
+ 517,"couple two years from now a year from now at this point i don't think it's gonna happen before the console i don't think
1554
+ ","51:04
1555
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1556
+ 518,"it's gonna happen before november so i don't know i think it's i think that's where this company's going but i don't know the timing of it
1557
+ ","51:09
1558
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1559
+ 519,"um but yeah a lot a lot of moving parts here so i think that's it and then finally
1560
+ ","51:16
1561
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1562
+ 520,"just some things that uh that i don't think are even i don't even talk about them because it's not a big part of my thesis i'm just trying to
1563
+ ","51:22
1564
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1565
+ 521,"make sure gamestop's still relevant and that it can generate some free cash flow but there's a whole bunch of um upside
1566
+ ","51:27
1567
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1568
+ 522,"potential that's 100 seemingly 100 discounted even i discounted myself because i can't except for the first one extended
1569
+ ","51:33
1570
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1571
+ 523,"interest and physical games as compared to like music and movies and stuff because people compared to that stuff and say oh it's going the same way
1572
+ ","51:39
1573
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1574
+ 524,"but i mean as long as there's interest in november of 2020 and for the next year or two then
1575
+ ","51:44
1576
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1577
+ 525,"gamestop's likely going to generate free cash flow in my biased opinion if you want to call it that but i mean what if it what if it
1578
+ ","51:50
1579
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1580
+ 526,"goes on even longer than one or two years what if it goes five years or ten years um because people want those physical
1581
+ ","51:56
1582
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1583
+ 527,"games i mean it's that's a similar case to movies and dvds but um excuse me dvds and cds and so forth but
1584
+ ","52:03
1585
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1586
+ 528,"what if um this console storage limitations could that persist games will only get
1587
+ ","52:09
1588
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1589
+ 529,"increasingly complex over time so is there a case to be made that they'll get so complex it'll be difficult to store
1590
+ ","52:15
1591
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1592
+ 530,"200 games on a system then you've got to delete them stuff it will be simplified longer term in the future but i'm just
1593
+ ","52:20
1594
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1595
+ 531,"thinking five years what if there's still quite a bit physical demand looking on five years or 10 years 20 years i wouldn't bet on that
1596
+ ","52:27
1597
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1598
+ 532,"but five years i'm like it could be 10 years maybe but probably not as much i i'm anyway that's so i'm just pointing that
1599
+ ","52:34
1600
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1601
+ 533,"out that everyone's pretty much pricing in this this right now people are pricing in that there's like no interest right now which
1602
+ ","52:39
1603
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1604
+ 534,"i think is a really aggressive bear case to make i i don't understand how anyone can be short game
1605
+ ","52:44
1606
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1607
+ 535,"stop at four dollars that is really really risky really risky and yet you see a huge
1608
+ ","52:50
1609
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1610
+ 536,"short position i think that's the bigger firm's trying to generate some extra income but i'm like oh my i see this i think what are you thinking
1611
+ ","52:55
1612
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1613
+ 537,"what do you think in short and gamestop at this price point right now a couple years ago okay maybe if it rises again
1614
+ ","53:01
1615
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1616
+ 538,"but right now what you're pricing in like a really apocalyptic scenario for game stop which
1617
+ ","53:07
1618
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1619
+ 539,"could happen but i don't i wouldn't feel comfortable betting on that so that's what i mean if it's if it's even just a little bit better
1620
+ ","53:12
1621
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1622
+ 540,"than that that's not being priced in then barry mentioned and other people mentioned two higher margin revenue streams via vendor partnerships i don't
1623
+ ","53:18
1624
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1625
+ 541,"even know what that looks like um but barry mentioned it so that's a possibility i know they got reggie on
1626
+ ","53:23
1627
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1628
+ 542,"the board too and they've been talking with microsoft about stuff but what what are the details what are the details of that
1629
+ ","53:28
1630
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1631
+ 543,"what could that be could someone team up with gamestop so that it changes the business model a bit
1632
+ ","53:33
1633
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1634
+ 544,"so that it could it could it could survive even longer i don't know i'm not really pricing it in but i know
1635
+ ","53:39
1636
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1637
+ 545,"it's a distinct possibility um and then just if they do what if those test stores and tulsa work out
1638
+ ","53:45
1639
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1640
+ 546,"they become something and i know with the pandemic too here they are trying to build a social gaming hub and stuff and uh
1641
+ ","53:51
1642
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1643
+ 547,"but this is a thriving industry and gamestop's the only brick and mortar retailer and the retailer dedicated to well brick and
1644
+ ","53:57
1645
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1646
+ 548,"mortar retailer dedicated to it has a presence and um seems like there could be something there i don't know if there is but
1647
+ ","54:03
1648
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1649
+ 549,"can you imagine can you envision it i know people can envision it i'm just saying for this bullet point list here that i'm not saying
1650
+ ","54:08
1651
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1652
+ 550,"is a big part of the thesis as is hopefully clear at this point of the video but it's a possibility a distinct
1653
+ ","54:13
1654
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1655
+ 551,"possibility that you at least should talk about and if stuff like this ever happened then if you're looking out two three
1656
+ ","54:19
1657
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1658
+ 552,"four years gamestop could be the stock price could be quite a bit higher especially after all those sharer
1659
+ ","54:24
1660
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1661
+ 553,"purchases and so forth um so yeah there's just additional things that could be that could be
1662
+ ","54:29
1663
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1664
+ 554,"factored in i think that covers most of the big items um
1665
+ ","54:34
1666
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1667
+ 555,"and again if you check out the other the other commentaries and letters and so forth for additional information i
1668
+ ","54:39
1669
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1670
+ 556,"covered some of the ones that i consider more important to me there's other things too maybe i did miss something important i don't know i'm losing track
1671
+ ","54:45
1672
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1673
+ 557,"but uh yeah let me know your thoughts if you'd see a blind spot or if you think i'm missing something or if you strongly disagree with stuff like especially my
1674
+ ","54:52
1675
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1676
+ 558,"forecasts and stuff or you think i'm i'm blindly bullish or that i'm i'm i'm biased and stuff yeah let me
1677
+ ","54:58
1678
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1679
+ 559,"know your thoughts and uh in the comments of this in the in the live stream on twitter wherever because
1680
+ ","55:03
1681
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1682
+ 560,"i want to be sure i'm right about this i feel like we are but i've been wrong before so i
1683
+ ","55:08
1684
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1685
+ 561,"i try to do as much analysis as i can to be as confident in the position as possible so
1686
+ ","55:13
1687
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1688
+ 562,"that's it i hope you liked this first video of the the the kitty corner here and in gamestop and let's see if it's an
1689
+ ","55:19
1690
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1691
+ 563,"exciting final few months of 2020 and um yeah tune in for more videos about other companies probably won't be
1692
+ ","55:25
1693
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1694
+ 564,"as long as this one but i hope hoping to share my thoughts on some stocks just to give you some insight into where i'm at with things
1695
+ ","55:30
1696
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
1697
+ 565,"but that's it thanks for watching and i'll see you around
1698
+ ","56:31
1699
+ ",v=GZTr1-Gp74U&ab_channel=RoaringKitty
data/transcript_GZTr1-Gp74U.txt ADDED
@@ -0,0 +1,1134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0:00
2
+ yo what up everybody this is going to be the first video of the kitty corner and the market has kind of forced my
3
+ 0:05
4
+ hand on this one the first stock that i'm going to talk about is gamestop and i know it's a polarizing stock some people won't even tune into the stream
5
+ 0:11
6
+ right now when they hear that i'm bullish on gamestop uh at the current price point it's trading about four bucks right now 260
7
+ 0:17
8
+ million dollar market cap and i most of these kitty corner videos i want them to be shorter like one
9
+ 0:23
10
+ minute five minute ten minute max i wanna be that's that way it's just a quick intro into uh my thoughts on the stock
11
+ 0:28
12
+ but this game stomp on it's going to be a little bit longer because um i have a lot to say about it
13
+ 0:34
14
+ i could talk about it for weeks i'm going to try to keep this as short as i possibly can but i have a lot to say i'm also hoping maybe you can catch some
15
+ 0:40
16
+ of my blind spots if i have some poke some holes in my thesis and share it with me because um yeah i think
17
+ 0:46
18
+ everyone else is crazy and i think i'm right but i've been wrong plenty of times in the past so i'm gonna upload this and maybe you can
19
+ 0:53
20
+ share your thoughts with me but uh yeah let's dive in gamestop okay here we are so like i said this video is going to be a little bit
21
+ 0:58
22
+ on the longer side for a kitty corner video so if you drink you might want one of these for this
23
+ 1:04
24
+ it's july 2020 right now and i'm bullish on gamestop at the current price point of about four dollars per share
25
+ 1:11
26
+ 260 million dollar market cap i've been adding to the position the past couple weeks it's been trading below four
27
+ 1:16
28
+ dollars per share and it's now the largest position in the roaring kitty model portfolio so
29
+ 1:21
30
+ um yeah i have a lot to say about it i've been i've been tracking it for a while i know it's a divisive stock so
31
+ 1:27
32
+ definitely share your your thoughts with me on this whether you agree with me or not i'm curious to hear um and because i have so much to say
33
+ 1:34
34
+ about this i had to put together this word doc just to help guide the conversation because i'd be all over the place because i uh
35
+ 1:40
36
+ without this guidance so i tried to just focus on what i consider the more important aspects um it just boiled into a single word doc
37
+ 1:48
38
+ here but uh yeah we'll just we'll just see how this goes but before we kick things off some recommended reading in fact i can save
39
+ 1:54
40
+ you the trouble of watching this video because my bowl thesis has already been covered by so many other folks i'm kind
41
+ 2:00
42
+ of just just sharing with you my viewpoint but everything that every aspect of my thesis people have already talked about so
43
+ 2:07
44
+ if you read these things these recommended things you won't need to watch this video so if you check out scion's letters to the
45
+ 2:13
46
+ board in just their commentary on things uh cyan that's barry's firm they had to file a 13d this year
47
+ 2:20
48
+ because they took a position at the time greater than five percent and within that 13d i haven't pulled up they had they included all their letters
49
+ 2:26
50
+ all their communications with management and the board and so forth so if you pull up that 13d at the sec website you
51
+ 2:31
52
+ can look through all the letters all in one place you could get these elsewhere too because they were press releases but i kind of like having it all in one
53
+ 2:36
54
+ place um so check out those letters to the board and also because there was the the board
55
+ 2:42
56
+ vote back in june they uh they shared their opinion on uh
57
+ 2:47
58
+ gamestop back in june so this is their latest viewpoint at the time they still even though they weren't they were below five percent they still had four percent
59
+ 2:53
60
+ position which a good a good size position but they shared their latest views so this was as of june this was only a month ago so
61
+ 2:59
62
+ scion st still seems fairly bullish on this but i really like i really like barry's letters because they they get right to the point so
63
+ 3:05
64
+ quickly that uh the whole thesis is right here this latest not maybe not just this letter but the
65
+ 3:11
66
+ whole thesis can be found in just these letters he has a he's a great job of of communicating his points so succinctly
67
+ 3:17
68
+ um but anyway i bring this up because that's his latest commentary on the company and besides scion you'll also want to
69
+ 3:24
70
+ check out when i say headstone premise letters and their restore gamestop presentation so hester and permit i think they own like seven eight percent
71
+ 3:30
72
+ of gamestop right now the activist investors they were the ones trying to get board seats but uh they've had a number of letters
73
+ 3:35
74
+ back and forth um over the past couple years now but they check out those letters too
75
+ 3:42
76
+ they have a lot of thoughts and good thoughts on gamestop um and they also have this restore gamestop
77
+ 3:48
78
+ presentation this is from may 2020 where they they put together this presentation to try to help them to
79
+ 3:53
80
+ share it with the investors and so forth help them get the board seats but it's like 80 plus pages like how much can i add to an 80 plus page
81
+ 3:59
82
+ presentation not much i'm going to reference this a couple times in this video but check out this presentation because a lot of the thesis
83
+ 4:06
84
+ is covered right here and then yeah so let me just pull this
85
+ 4:11
86
+ back over here all right so that's some recommendation also the seeking alpha articles i think i have it open here seeking alpha
87
+ 4:17
88
+ articles yeah there's all sometimes you come across a company there's not that many articles written or the ones that are written just aren't
89
+ 4:22
90
+ that good gamestep has a number of really good articles out there and um i'm biased you don't need to tell
91
+ 4:29
92
+ me this but in my opinion the the bullish articles uh here the bullish authors they seem to
93
+ 4:34
94
+ be more attuned to reality than the bears i think maybe you disagree that's cool let me know but i think they seem to be
95
+ 4:41
96
+ more the security analyst type this is going to come up later in this video but um check out the articles a lot of the stuff i'm going to say it's already been
97
+ 4:47
98
+ covered here so that's what i mean i don't have much new to say i'm just sharing my viewpoint so check those out but yeah i think
99
+ 4:53
100
+ that's just about everything some recommended reading so you read all that stuff you probably don't need to watch this but if you are going to watch this
101
+ 4:58
102
+ let's keep moving forward so like i said there's a lot of aspects of a lot of moving parts to this bowl thesis but i boiled it down to just what
103
+ 5:04
104
+ i consider the three overs digital risks seem to me to be overblown the negative sentiment is overdone
105
+ 5:11
106
+ and the value is overlooked in fact i think the gamestop stock is i mean it
107
+ 5:17
108
+ epitomizes value investing it's like value investing at its finest because it's such a classic case of
109
+ 5:24
110
+ a value investing we'll get into it later i don't want to spend too much time on that but it's just a classic value stock
111
+ 5:29
112
+ and i think that's why it's so polarizing in my opinion but okay so let's get into the digital
113
+ 5:36
114
+ wrist overblown so um the tren this transition to digital i think it's just much slower than what's
115
+ 5:42
116
+ being priced in it seems to me that um it's been happening over time i do think
117
+ 5:47
118
+ it's inevitable like if we're looking out 50 years 100 years we don't need to have a discussion because i'm on we're on the same page everything's
119
+ 5:53
120
+ going to be digital i just don't think we're there yet and this is meaningful because 2020 is when the consoles are coming out we it
121
+ 6:00
122
+ does matter where we are today and where we'll be the next couple years you can't just say we're going fully
123
+ 6:05
124
+ digital so that's the end of the discussion i think that's what a lot of people are doing i'll touch on this later too but people just go digital is the future so there's
125
+ 6:13
126
+ nothing to be had here with gamestop there's no he there's there's no future um but
127
+ 6:18
128
+ i don't think we're there yet i mean it's just it's transitioning much slower i have some web pages pulled up here
129
+ 6:23
130
+ just to so i think i try to let me just keep on going with these bullet points i'll just list them before i start pulling up some
131
+ 6:28
132
+ other websites but people just say i mean physical discs there's they still remain a good size chunk in 2020 that's part of what i'm getting at
133
+ 6:34
134
+ i also think in-game purchases they're kind of skewing some of the figures that people are sharing like they'll share some figures which i'll show in just a
135
+ 6:40
136
+ sec if they're saying this is what percentage of the market is digital right now but i think those in-game purchases are kind of affecting that i'm
137
+ 6:46
138
+ not certain but that's okay because i'm a value investor i don't need to be precise um and then why disks but before i get
139
+ 6:52
140
+ to ydisk let me just share some of the things so if you google like physical versus digital you're going to come across the
141
+ 6:58
142
+ statista web page and like you see stuff like this and maybe other people are and
143
+ 7:04
144
+ and you see i highlighted this part in contrast only 17 of video games were sold in physical form
145
+ 7:09
146
+ and you see figures like this and you see the trend too if you look at the trend over the past five years it looks really alarming and i did this so people
147
+ 7:15
148
+ see this and they think oh man game stops toast but um i think there's just some
149
+ 7:20
150
+ misunderstanding with that data i think a lot of that like i said is is in-game purchases i think the
151
+ 7:25
152
+ actual outright purchase of disks is still relatively high
153
+ 7:31
154
+ and i have um let me just see what other page i got up here so to counter this there was an article
155
+ 7:36
156
+ in may 2019 by uh web bush securities i mean maybe they're biased too maybe they're bullish on game stuff
157
+ 7:42
158
+ but they talk about a number of things that like kind of counter that point that everything's going digital like sales of uh the fifa game is still 75
159
+ 7:49
160
+ discs in 2018. i don't even know the accuracy that i see the report that they're citing but this is the thing you're going to see
161
+ 7:55
162
+ lots of data and as an individual investor it's hard to know what's true and what's not what's accurate so you kind of just got to read a lot
163
+ 8:01
164
+ and try to get a feel for this type of stuff and so check out this article it was in variety check this out because they kind
165
+ 8:07
166
+ of counter a lot of this stuff whether or not you fully agree with it that's another thing but just read it and then there was another thing here
167
+ 8:14
168
+ too in game industry.biz where they talk about this is more a european focus where they're talking
169
+ 8:19
170
+ about certain countries um what percent is is digitized what what percentage of
171
+ 8:24
172
+ games purchased or physical and so look over this i don't want to review the whole thing that's not the point of this video but just check out these sources
173
+ 8:30
174
+ where this was 2018 2019 it's 2020 right now and the trend is clearly going toward digital but this is my
175
+ 8:36
176
+ point is that you're still seeing some countries that are still heavily skewed to physical and i don't think one year later all of
177
+ 8:42
178
+ a sudden everyone's going to be buying digital so that's the thing is because these next few years are critical for this gamestop thesis and so
179
+ 8:48
180
+ if there's still a good chunk that's physical games gamestop sells other stuff too but i the software itself those used games
181
+ 8:54
182
+ what everyone's focused on because that generates a lot of free cash flow that in particular yeah i just checked
183
+ 9:00
184
+ these articles out now i know i'm rambling a bit but i got to keep going to keep this quick what else did i have up here oh and then
185
+ 9:06
186
+ like so there was a um uh this article's from june 2019 it was an interview
187
+ 9:12
188
+ it was it was on the verge but they were talking to uh the xbox boss phil spencer
189
+ 9:17
190
+ and um so this i'm like trying to piece together the story as to that's what i mean it's so hard to know exactly what
191
+ 9:23
192
+ these numbers are how many people are still buying discs so i like try to look for stuff that piece to piece together the narrative
193
+ 9:29
194
+ um and so phil spencer was saying i want to get this was last year i want to give
195
+ 9:34
196
+ people choice and right now physical is a choice that millions of people love so this is the xbox
197
+ 9:40
198
+ phil spencer and they're saying this last year that's be that should be meaningful to people when you tell me no one's buying
199
+ 9:45
200
+ physical anymore if xbox um is saying that so the people in charge of xbox are helping lead the
201
+ 9:51
202
+ charge of saying that's like you should pay attention to that um and if you remember back in 2013 when
203
+ 9:56
204
+ they were rolling out the xbox there was some confusion over the console and they kind of messed up a bit
205
+ 10:02
206
+ and then they had they wrote this blog um i forget the the story itself but you they had to say
207
+ 10:08
208
+ like this they had to walk it back you told us how much you loved the flexibility and so forth and uh with games delivered on disc they had
209
+ 10:13
210
+ to start offering um the dis version and start trumpeting that even more because people wanted that i get it was 2013.
211
+ 10:20
212
+ it's changed during this console cycle i get that it's not lost to me i just mean um that xbox kind of realized that like
213
+ 10:27
214
+ all right people still want these discs and i still think that's the case today 2020 to a degree maybe not not as much in 2013 because it
215
+ 10:33
216
+ has indeed changed quite a bit but it is still it is still relevant um
217
+ 10:39
218
+ and was there anything else i wanted to point out i had a couple of web pages that i pulled up i showed that nah that's it that's it for this oh and then
219
+ 10:45
220
+ just the general physical versus digital case now because it's it's july 2020 the consoles are coming out you're gonna see a lot of
221
+ 10:50
222
+ youtube videos of people debating this should they go physical should they go digital and there's a lot of good videos out
223
+ 10:56
224
+ here and uh in particular uh fanta i haven't seen all your stuff yet but from what i've seen so far you have a lot of
225
+ 11:01
226
+ good thoughts on this i mean i know you're not a security analyst that's what i mean a lot of people are voicing their opinions you have a lot of
227
+ 11:06
228
+ um spheres crossing paths here like gamers and so forth and i agree with a lot of stuff the finn is
229
+ 11:11
230
+ saying here but he brings up a lot of good points um but then in in also these other ones
231
+ 11:17
232
+ he's got a couple videos too um but um there's a whole number of videos out here and everyone seems to be
233
+ 11:22
234
+ leaning a bit more toward physical when you watch these things um i just find that interesting like why
235
+ 11:27
236
+ you hear digital digital but then you see these videos and people kind of talking more about the benefits of physical but you can find it both ways
237
+ 11:33
238
+ you can kind of find whatever you want to find in here but in this video i brought this one up because this gentleman he's leaning more
239
+ 11:38
240
+ toward digital and but then you check out the comments everyone starts talking about the disc
241
+ 11:43
242
+ versus disc version i want the disc version dispersion diff just about every comment not maybe not every single one but like this like this
243
+ 11:50
244
+ i'm trying to piece together that story right um so when i see stuff like this i just find it interesting that all i'm trying
245
+ 11:56
246
+ to figure out as a value investor is is there any is does there remain some demand in 2020 for those disks
247
+ 12:02
248
+ because that's important for game stops um the free cash flow degenerate free cash flow generation so
249
+ 12:08
250
+ look check this stuff out for yourself i'm just not we're not going to watch these videos right now but i just encourage you to check it out yourself if you're trying to build your own
251
+ 12:14
252
+ thesis around gamestop and then um so why discs uh
253
+ 12:19
254
+ preference console storage trade value download speed sharing i don't even need to i'm just it's covered by the restore gamestop
255
+ 12:26
256
+ presentation um this the what we're getting at here is that there's still consumer demand
257
+ 12:31
258
+ for game stops offering so let me pull this over here and let's just scroll down just a couple
259
+ 12:36
260
+ this is what is this slide 80 i think um and just gamestop retains my share with customers now this is all quoted
261
+ 12:42
262
+ from one single survey so this is the stuff i look at where are you getting this data from um is this demand legitimate and this is
263
+ 12:48
264
+ what i mean i'm not basing everything on this one single data point but um this is the stuff i like to see as a as
265
+ 12:55
266
+ a value investor because i just need to make sure that gamestop isn't going bankrupt in that people are
267
+ 13:00
268
+ still buying disks and that there are still demands for gamestop for just a couple of years because if that's the case
269
+ 13:07
270
+ gamestop is likely undervalued so the point of just showing this that gamestop there's still interest for uh it is some
271
+ 13:15
272
+ or many of its products and then digital downloads have slowed share gains over time you can see this
273
+ 13:22
274
+ this chart too check just check out this presentation right but i'm just i'm just trying to make my point there that uh it's not over yet in 2020 it's not over
275
+ 13:28
276
+ yet 2030 yeah maybe it will be but not yet um anything else oh yeah so this is a
277
+ 13:34
278
+ list of the i've kind of put together that list it's uh you can see this here too so it's interesting that people are
279
+ 13:41
280
+ downloading games isn't lost on me right because i i have friends i have family and they think i'm crazy that i'm
281
+ 13:46
282
+ bullish on gamestop because they many of them are downloading or downloading games and so that's the thing you got these anecdotes you're
283
+ 13:52
284
+ talking to people and so forth and maybe you you're i feel like most people watching this are probably downloading games
285
+ 13:57
286
+ um i think gamestop might serve a different target customer where um not everyone has an amazon prime account
287
+ 14:04
288
+ i have that up uh what is it like um yeah 112 million
289
+ 14:09
290
+ members amazon prime as of december 2019. that's not every like everyone just
291
+ 14:15
292
+ thinks oh you just buy it on amazon that's it and uh but like not everyone has an amazon prime account some people
293
+ 14:20
294
+ do want to shop at brick and mortar maybe they want this i'm going to just list and stuff that's already here they want the trade and value they want these
295
+ 14:26
296
+ things and that's not to say that you have these things or you want these things and so forth or that these are an issue
297
+ 14:32
298
+ for you perhaps they're not i'm willing to bet that they're not because if you're in a situation where you're watching this video um
299
+ 14:38
300
+ then i've yeah it just depends i don't have time to get into all that right now but
301
+ 14:44
302
+ um yeah so that's the way why i think digital risks are overblown i still think physical um is here for at least a few
303
+ 14:50
304
+ more years in particular this console cycle i still think it's going to be relevant and i think that physical disk version
305
+ 14:55
306
+ is is going to outsell the digital version let me know what you think for the for the new xbox and playstation consoles uh all right so
307
+ 15:02
308
+ the next one is let me move this back out of the way negative sentiment is overdone so this
309
+ 15:08
310
+ is some of the heaviest negative sentiment i've i've seen with the stock i um
311
+ 15:14
312
+ just about i mean it there's just so many different ways people are negative about gamestop
313
+ 15:19
314
+ about its stock about its future business and so i just jotted down a couple just for fun uh these are these aren't all true exact
315
+ 15:26
316
+ quotes people have said to me but haven't shopped there in years or my friends haven't shopped there in years you can download everything digital's
317
+ 15:32
318
+ the future gamestop's the next blockbuster that's a popular one people just they say oh gamestop's a
319
+ 15:37
320
+ possible investment they go oh no no that's the next blockbuster and then they just move on they go that's the end of the discussion
321
+ 15:42
322
+ that no one wants to look under the hood the terminal value is zero um with the
323
+ 15:47
324
+ poor managerial decisions they like blame past managerial decisions as a reason not to invest in gamestop brick and
325
+ 15:52
326
+ mortar is dead anything brick and mortar is a bad investment so amazon that's the end of the discussion did you just say amazon
327
+ 15:59
328
+ anyone if amazon can compete with you then you're dead and then and then the pandemic so there's some
329
+ 16:04
330
+ there's some legitimacy to some of these things i'm not saying i'm not saying that these things are all ridiculous i'm not saying that
331
+ 16:10
332
+ i'm saying that that it's just so much of it that i think that's a a part of the reason that it's weighing
333
+ 16:16
334
+ on gamestop gamestop stock price so much in july 2020 because it's really heavy it's
335
+ 16:22
336
+ really heavy to get out from underneath that it's a reason part of the reason you see such heavy short interest as well
337
+ 16:28
338
+ but i think this is so this has led to an opportunity that that's that's what i think but um yeah so just so much negative
339
+ 16:36
340
+ commentary i just think that this sentiment is so negative that it's overdone that's what i'm trying to get at in this section and also with these game stop bears i
341
+ 16:43
342
+ you've read some of these articles or some other some of the commentary on this and i think people because they
343
+ 16:48
344
+ themselves this one i was trying to get out too they seem to falsely impute behaviors to others like they themselves not but might not be customers of gamestop
345
+ 16:55
346
+ or if they have bought physical disks they have the ability to to resell it on ebay or something like that or
347
+ 17:01
348
+ they just download everything and i think what happens is the people who are opining on gamestop as an investment
349
+ 17:07
350
+ they're they're the loudest right but they don't they're not they're just not customers or they are their friends or family on customers too
351
+ 17:14
352
+ and when they have that reason when that happens they they um i don't know maybe they're not digging deep enough or maybe i'm wrong i mean i might
353
+ 17:20
354
+ be wrong about this too but i think people are thinking that everyone else behaves the way that they behave
355
+ 17:26
356
+ and i think that could be a mistake in this case because from what it seems to me that there are
357
+ 17:32
358
+ still people shopping though there remains demand and just because of people talking about it don't have it doesn't mean it's not there i think i think this
359
+ 17:38
360
+ is my thesis you're welcome to to tear to shreds feel free i encourage you to please
361
+ 17:44
362
+ comment on this video or talk to me on the live stream about it because as you can tell i'm really curious about this and also many of the people who are who
363
+ 17:51
364
+ are negative on gamestop they don't seem to be security analysts and you may some of you may think that may not matter but it does
365
+ 17:58
366
+ like this is the opportunity for like a value investor is that yes i'm analyzing a business model right
367
+ 18:03
368
+ i mean that's important for some people that's all that matters but when you're analyzing a security like you can have i don't think
369
+ 18:10
370
+ gamestop's terminal value is necessarily zero but even if it were that doesn't mean game stops a bad
371
+ 18:15
372
+ investment right now and i think that's lost on some folks because they're not bona fide security analysts and so if
373
+ 18:20
374
+ let's say you've been right about the industry the past five years or so maybe you're just a gamer um or um
375
+ 18:27
376
+ an investor who's just reading some of the headlines and you see the trend towards digital and you and you can you're kind of like all right this is probably
377
+ 18:33
378
+ inevitable but you don't start looking at the hood you're not looking at the balance sheet you're not looking at historical uh free casual margins or what to expect
379
+ 18:40
380
+ in the future or something like that and i think if you're not a security analyst and in digging into the stuff it gets lost
381
+ 18:46
382
+ in you that doesn't mean the security analysts are always right we make mistakes and we might be wrong on this one but when i see that when i see a bearish say
383
+ 18:53
384
+ seeking elf article out there um and i read through it and i think no this isn't this doesn't this isn't like
385
+ 18:58
386
+ security analysis to me you you know you know you're not telling me the things that i want to hear if i if i were trying to build
387
+ 19:04
388
+ a bearish position on the stock then i think all right then that's something to be wary of my my i perk up a bit
389
+ 19:11
390
+ so yeah that's it that's just this negative sentiment just seems so heavy and i think that's why we're where we are today at uh i mean sub four
391
+ 19:17
392
+ dollars in july 2020 that's that's surprising me maybe earlier this year and last year
393
+ 19:24
394
+ and stuff but so close to the console refresh that's something that's something okay so then finally value is being
395
+ 19:30
396
+ overlooked i think oh i wouldn't like to keep this on the same page i need a drink i'm just going to stop you know
397
+ 19:39
398
+ all right so so because of these like first two things i feel like um no one's looking under the hood i already said
399
+ 19:44
400
+ that but there's a lot of things that are happening fundamentally that um that that one could be excited about myself
401
+ 19:50
402
+ included so like there's a new board of directors um there's a new management team and so that's what i mean people criticize
403
+ 19:56
404
+ gamestops historical decisions their poor acquisitions and so forth um and maybe um your poor operational
405
+ 20:03
406
+ decisions whatever it is but it's all right cool cool yeah that's that's fair but we have a new manager team right now that's not to say they're
407
+ 20:10
408
+ going to hit it out of the park that's not the point the point is just that it has changed and so far i have to say they seem
409
+ 20:15
410
+ somewhat comp somewhat competent um i mean they just got reggie to the board too i feel like that's big
411
+ 20:20
412
+ but then you got sherman for the management team he's only been here just over a year he's just getting started he needs a little bit of time
413
+ 20:26
414
+ i know barry he voiced his opinion on the new board seats and he he uh he wasn't in favor of hester perman i kind of get that i i don't it's
415
+ 20:34
416
+ a marginal impact on the bull thesis it's okay that has to impermit they seem like they they they know they
417
+ 20:40
418
+ get their finger on the pulse i don't think it makes that big of a difference but i kind of get where burry's coming from because it kind of feels like
419
+ 20:45
420
+ management's been doing some good things over the past 12 months in the right direction and we'll get to
421
+ 20:50
422
+ some of this stuff as i work through this bullet point list but i just mean so far from my pers from it just looks like
423
+ 20:56
424
+ they're they're competent they're doing the right things and as a value investor you need to see that because if they don't you kind of need stuff to go
425
+ 21:04
426
+ you need a lot of a lot of stuff to go right i don't want to say that but it's just an important element of of
427
+ 21:09
428
+ this type of a thesis and one of the ways they've been showing that they they know what they're doing or
429
+ 21:14
430
+ they're seeming competent competences they've been cutting costs so they talk about cutting costs there's one thing to talk about into one thing to actually do it they seem like they're doing it that
431
+ 21:19
432
+ so um they're cutting costs um in fact while i go part of what i want to do
433
+ 21:26
434
+ here during this video is i want to review some of the fundamentals and we'll get to this but i just want to
435
+ 21:31
436
+ review a couple more things as i do this ah sorry about that
437
+ 21:37
438
+ um they've kind of reducing cost of goods sold so it's identifying the stores testing it
439
+ 21:42
440
+ and we're improving working capital management um a lot of people talk about this but they seem like they're actually doing it
441
+ 21:48
442
+ um they can make better capital allocation decisions you can see them selling assets actively testing stores uh they're not
443
+ 21:54
444
+ making any dumb acquisitions like you like this this is just stuff that's it demonstrates to me that
445
+ 22:00
446
+ they're on they could be on the right path that um they could be um like when you're selling assets like
447
+ 22:05
448
+ in this year when it's a it's a tough year for gamestop and they're selling the jet
449
+ 22:10
450
+ selling doing some sale lease back um some sale lease back things just to generate a little bit extra cash that
451
+ 22:16
452
+ cash goes a long way right now and um and of course testing the store that feeds into longer term things right
453
+ 22:22
454
+ but this stuff's important and then improve flexibility they have right now because of the refinancing they extended the maturities and they
455
+ 22:27
456
+ got rid of some covenants like i'm listing a whole bunch of things here that but like how not enough people were talking about
457
+ 22:34
458
+ this stuff this is what i mean like the stock price it seems it's gone nowhere for 12 months but the fundamental events that have been
459
+ 22:40
460
+ unfolding are like objectively positive i um it things are they've been
461
+ 22:45
462
+ incrementally improving and that that the price is still flat is surprising to me um
463
+ 22:51
464
+ they have adequate liquidity now to get through the console refresh and for a potential turnaround it might be still too early to that when i say potential
465
+ 22:57
466
+ turnaround i mean like re revamping their business model to be like they could be here in 20 years right now i'm not sure about 20 years
467
+ 23:03
468
+ right not many people are but they might have enough liquidity especially to get to the console refresh and can generate some extra cash they
469
+ 23:08
470
+ might be in a good position tough call but definitely enough liquidity that i don't people talk about gamestop going bankrupt and stuff i
471
+ 23:15
472
+ uh if you're saying gamestop going back over you need to you need to you need to show your work on that one
473
+ 23:22
474
+ because i don't see it at all it highly highly highly highly unlikely to happen
475
+ 23:27
476
+ um i it's hard for me to take those types of these that type of a thesis seriously so um
477
+ 23:33
478
+ i'd be i'd be wary of that um anyway gamestop still remains highly
479
+ 23:39
480
+ relevant too they got six billion in revenues at the tail end of a console cycle they have one billion during the
481
+ 23:44
482
+ the um latest quarter q1 look at this this was they had to uh
483
+ 23:50
484
+ um that would be dealing with the pandemic end of a console cycle they literally had to close their doors and
485
+ 23:56
486
+ they still generate a billion dollars in sales like a billion dollars and then i talked to my family and
487
+ 24:02
488
+ friends they go yeah no one shops there anymore i'm like how do you do a billion dollars how do you do a billion dollars and anyway i know free cash flow is what
489
+ 24:07
490
+ matters but still that's telegraphing to me like people are still shopping here and yes everyone see everyone will focus on the year over year declines right
491
+ 24:13
492
+ yeah let me drink um it's just that sheer level that
493
+ 24:19
494
+ sticks out to me first um yeah so um let me get back to this
495
+ 24:26
496
+ so i like to see it six billion in revenues is legit that's that's a good size that's a good sometimes you come across a company it
497
+ 24:31
498
+ might only be um like a billion dollars two billion reverse to two billion revenues especially like a retail company and i think all right well as
499
+ 24:37
500
+ um it's gonna fall off a cliff tomorrow and you might say game stops revenues are currently falling off a cliff but if you're still
501
+ 24:43
502
+ at a billion dollars right now with a new console cycle on the way that that
503
+ 24:48
504
+ that's um that's legitimate and um yeah six billion is a good size is good size
505
+ 24:54
506
+ um okay so significant operating leverage because of this it's trading at just four
507
+ 25:00
508
+ percent of these revenues i you don't see too many companies traded four percent of of revenues with this
509
+ 25:06
510
+ type of a financial situation like usually you see that and often when you see that companies
511
+ 25:11
512
+ might be going bankrupt in the near-term future and like i said i think that's highly unlikely with gamestop so four percent of revenues with a new
513
+ 25:18
514
+ console cycle i think what the hell what so anyway if the things just go a
515
+ 25:23
516
+ little bit right then that that operating leverage can lead to a a huge rise in the share price due to a
517
+ 25:30
518
+ realization of what fair value is all right so then just the company's been historically successful at
519
+ 25:36
520
+ generating free cash flow this is the the next um item that i had on that list if we just pull up simple free cash flow
521
+ 25:42
522
+ here in fact let me scroll over to just these are this side over here ignore the conditional formatting i didn't clean it
523
+ 25:47
524
+ up but uh if we look at simple free cash flow this column this row here that's operating cash flow less cap x
525
+ 25:54
526
+ look at they were generating half a billion dollars there for a couple years and uh it's just been historically
527
+ 25:59
528
+ positive this is rolling 12 months so this is through q1 2020. if you look at
529
+ 26:04
530
+ fiscal year um 19 got a little bit wonky because they were aggressively paying down some accounts payables and
531
+ 26:11
532
+ uh they're trying to work on working capital they're definitely close to burning cash
533
+ 26:16
534
+ right now i we don't need to get into the the specifics but anyway but if you go you go to the rolling 12 months and you
535
+ 26:22
536
+ start seeing they've been positive generating positive free capsule this whole time um really impressive you don't see that
537
+ 26:28
538
+ too often and it doesn't mean it's what's going to happen in the future i just mean it just sticks out to me and then generating 500 million and that
539
+ 26:34
540
+ type of i call it simple free cash flow that's um that stands out to me so yeah and despite i think that i know
541
+ 26:40
542
+ hester and permanent comment on this too but i think they've had bloated costs in the past i think sg a selling general and administrative
543
+ 26:45
544
+ expenses seem to be pretty high and uh they probably could have been doing a better job of managing that working comp working capital i think
545
+ 26:51
546
+ that previous manager team was just a little bit lazy on that front they were kind of just riding
547
+ 26:56
548
+ riding the wave of the business model and they weren't really trying to do a diligent job of managing the operations
549
+ 27:02
550
+ and so they were still generating a ton of free cash flow that is pretty pretty impressive so um oh yeah but it seems to be overlooked
551
+ 27:09
552
+ a little bit okay so then and then right now 260 million market cap give or take
553
+ 27:15
554
+ and i think let's it this is trading at what i perceive to be a discount to the fair net asset value to fair book value
555
+ 27:21
556
+ of around 400 million give or take plus a conservative estimate of future free cash flow so this is where i spend a little bit of time
557
+ 27:26
558
+ on in this video i don't know where i'm at right now and time-wise but let's just dig into this just a little
559
+ 27:32
560
+ bit um just take a peek at the balance sheet and when you look at the balance sheet
561
+ 27:37
562
+ like doesn't it stick out to that cash position of 570 million to a market cap of 260 million like holy
563
+ 27:44
564
+ [ __ ] right i mean you don't see that that often um usually when you see that it's it paints a really dire picture for the company
565
+ 27:50
566
+ and maybe that's why this price is is in the gutter but it doesn't deserve to be in my opinion and i think people might
567
+ 27:56
568
+ be thrown off by some of these things and accounts receivables let's
569
+ 28:02
570
+ say the thing so if companies not going bankrupt we can assess these things with gamestop being a going concern and if that's the case you don't need to
571
+ 28:07
572
+ discount them too heavily so i'm right i'm pulling up this balance sheet just to assess the quality of book value so right now we have book value of
573
+ 28:12
574
+ about 435 million and the question is is that a legitimate is that a fair estimate of what book
575
+ 28:17
576
+ value is if the company were to like sell all these assets and distribute it to shareholders it's not a true liquidation i'm not i
577
+ 28:23
578
+ want to do a liquidation analysis because i don't think the company's going bankrupt they just want to just a quick assessment of what what
579
+ 28:29
580
+ their assets are currently worth that's what i'm going through like cash you know that's pretty legitimate value they're 570 million
581
+ 28:34
582
+ receivables also pretty decent um you can you can kind of bet on that to a degree maybe 50 million 60 million merchandise
583
+ 28:42
584
+ inventories you see the big decline in inventories they've been trying to been working on
585
+ 28:47
586
+ improving their working capital management and i'd like to think i have i don't like to think i it would be nice if the inventory that
587
+ 28:53
588
+ they're selling off has been the lower margin or um um inventory in
589
+ 28:58
590
+ less demand and so forth so it's only higher quality inventory that's left over and actually if you look at the 10k this
591
+ 29:04
592
+ is q1 but if you look at the 10k and you start going through the footnotes and analyzing the inventory it kind of looks like that a good chunk of
593
+ 29:11
594
+ the inventory the majority of their inventory is higher quality inventory and by that i mean newer hardware newer software and if
595
+ 29:18
596
+ that's the case um that might this inventory dollar amount might be
597
+ 29:23
598
+ pretty pretty accurate and some people look at gamestop inventory and they go think oh oh that's used games that's
599
+ 29:29
600
+ probably not what's worth what it's on the books as but this stuff's carried at costs even those used games the older used games that
601
+ 29:35
602
+ they have if many of you may know they're paying a small fraction of what they ultimately sell it
603
+ 29:41
604
+ for i know people complain about that but it's carried in the books at that cost that what they paid for it so even if it
605
+ 29:46
606
+ might not be selling at the sale price they hope in theory you'd think that they could potentially get in the ballpark of cost
607
+ 29:52
608
+ maybe not but that's what i mean and if the inventory is is indeed higher quality newer and so forth and that inventory
609
+ 29:58
610
+ figure is probably in the ballpark of reality and prepaid expenses is a going concern that's probably a fair value of that
611
+ 30:05
612
+ maybe a slight discount assets held for sale i think that's the jet but they sold it like the week later so that's done
613
+ 30:10
614
+ um and i mentioned the the warehouses in the distribution facilities that they're they're hoping to do a sale lease back
615
+ 30:17
616
+ on um that it's not it's not under assets held for sale it's it's elsewhere
617
+ 30:22
618
+ probably under property and equipment but um that's another thing that's held for sale right now that will uh generate some cash just something
619
+ 30:28
620
+ that that's the thing i didn't toss it on the bullet point but there's another there's another cash generating thing that they're doing um
621
+ 30:34
622
+ that's gonna this balance sheet's gonna be modified it already is modified right it's almost um we're in july here q2 is
623
+ 30:40
624
+ almost over but um yeah um forget the leases i don't want to get into leases right now it's
625
+ 30:46
626
+ uh i disagree with how they're handled on the balance sheet it kind of interferes with my analysis
627
+ 30:53
628
+ and there's a contra account in the liability checks and we don't need to get into this now but um
629
+ 30:58
630
+ deferred income taxes that has value um as a going concern and so forth and then
631
+ 31:04
632
+ other non-current assets and i don't know where it's in here but they also have the game and former magazine which uh
633
+ 31:09
634
+ i mean i don't know how much that's worth everyone likes i get i know game and former magazine you automatically get it when you're a subscriber to
635
+ 31:15
636
+ gaming uh uh to the um to the remember the gamestop membership account oh by the way they have 42 i should have mentioned
637
+ 31:21
638
+ they said 42 million members i think that's what hester perman's uh presentation said so people say people
639
+ 31:27
640
+ don't shop there it's like there another reason they're incentivized to shop there they have that membership which gives them some some perks and stuff but
641
+ 31:32
642
+ 42 million anyway um they um along with that membership they get the
643
+ 31:38
644
+ subscription to game informer and maybe not everyone reads it but something like i think i have the do i have it up
645
+ 31:45
646
+ yeah here it is okay so the game form magazine they have yeah look at this so this is the top
647
+ 31:51
648
+ um subscriptions in the united states in game informer um number five on the list with six
649
+ 31:58
650
+ million in subs so um yeah like i said i know not everyone necessarily reads it because you get it with the membership and so forth but
651
+ 32:04
652
+ that's a lot of eyeballs on there i mean you don't have a fraction of reading them and then you see something like time number 13
653
+ 32:10
654
+ i think that sold for a couple years ago for just under 200 million i think i had looked that up recently
655
+ 32:17
656
+ and um in time i mean people are subscribing to that and i'm sure it's generating
657
+ 32:22
658
+ probably more free casual than game informer again if if people uh i don't know what the breakdown is for how many people are paying for that
659
+ 32:28
660
+ subscription and stuff nor how many are reading it and so forth but if times getting close to 200 million
661
+ 32:34
662
+ and uh i mean what matters is if game informer is making money right i get that part but it seems like an asset for one of the uh a thriving
663
+ 32:41
664
+ industry like gaming and you got one of the top magazines it's a question of how much it's generating but nevertheless we can
665
+ 32:47
666
+ it that the the name brand itself probably has some value so it's just another asset that could in theory
667
+ 32:52
668
+ potentially be monetized i just i don't know what the value is i don't need to this is the good thing about being a value investor
669
+ 32:58
670
+ it's like my default like ah okay it's on the books just because you come across so many companies where they
671
+ 33:03
672
+ don't have these assets they don't have leverage to pull that's what i'm trying to convey here with gamestop they have leverage to pull
673
+ 33:09
674
+ and this is just another example of it so i'm not sure where it is on the balance sheet uh maybe this other
675
+ 33:15
676
+ maybe property and equipment i'm not sure but it's on there that's on there and then you get to the liabilities and all the liabilities are pretty fair
677
+ 33:21
678
+ crude accounts payable accrued liability so actually some of these are probably like
679
+ 33:26
680
+ this one game like gift cards and stuff like this i mean like that's kind of a it's a legitimate liability but kind of
681
+ 33:31
682
+ a soft liability um and then the operating leases we can forget about those the current portion
683
+ 33:37
684
+ long-term debt this has already changed because of that bond exchange they did um yeah they were able to extend the maturity a couple of years and they got
685
+ 33:43
686
+ rid of some covenants because of it over 50 percent agreed to do it and that's just that's huge news and uh and
687
+ 33:51
688
+ because it gets them to the console cycle and it gets them to the point where they'll they could potentially have much more
689
+ 33:56
690
+ free cash flow to navigate their their uh their situation but anyway so they just it's changed and uh the line of credit
691
+ 34:04
692
+ also they have some unpaid rent too we mustn't forget that it's in here somewhere somewhere probably accrued liabilities and stuff but um
693
+ 34:11
694
+ but they have the the revolver too which is almost certainly changed now that it's july but um although um
695
+ 34:18
696
+ some other long-term okay moved into new other long-term liabilities and then total anyway so as we work through this and we
697
+ 34:24
698
+ look through all this then you see book value of about also i like to see sorry retained earnings of that 1.3 billion
699
+ 34:30
700
+ they've since had write-downs right because all those acquisitions they had they wrote them all down probably some inventory and stuff
701
+ 34:35
702
+ but i'd like to see good retained earnings because it proves the company was at some point historically at some point profitable so that's what
703
+ 34:41
704
+ i mean legitimate business model historically anyway now you see stockholders equity after major write-downs and stuff
705
+ 34:48
706
+ um that's the thing if you hadn't seen major write-downs then you might think that there might be some on the horizon right around the corner and stuff but we
707
+ 34:53
708
+ already have them at least especially the soft stuff like goodwill you should just assume goodwill's just a future right down when
709
+ 34:59
710
+ you see especially if a company is battling risks and stuff but now at 435 million
711
+ 35:04
712
+ um i know it's not a liquidation analysis and stuff but uh that's it seems to me in the ballpark it's to
713
+ 35:09
714
+ get that fat cast position too so yeah it just seems to be in the ballpark so it's meaningful because
715
+ 35:15
716
+ the market caps at 260 right now so not a bad margin of safety but in addition to that there's also the
717
+ 35:20
718
+ opportunity for future free cash flows right so if i pull up this um this is my one of
719
+ 35:25
720
+ the fundamental spreadsheets that i have and this is where i perform the analysis i know i just had this open but
721
+ 35:32
722
+ um let's just poke let's just look at a couple things in particular that stick out to me i mentioned the revenues we're at six billion people focus on this
723
+ 35:38
724
+ year-over-year decline right it's alarming that's a fair point it is alarming but people are overly focused on that
725
+ 35:45
726
+ what i'm seeing is just the share level 6 billion but also the historically fairly stable revenues surprisingly
727
+ 35:51
728
+ stable um but 9 billion it's a big company good sized company i should say not a big
729
+ 35:57
730
+ company but also but also noteworthy is it it was fairly stable through the last console
731
+ 36:02
732
+ refresh right that's that matters um and then you have the switch too sometimes these are staggered
733
+ 36:08
734
+ switch was a couple years back that's stabilizing things a bit but um but anyway you see this big drop
735
+ 36:14
736
+ down and this year i think because so much is going on tail end of a console cycle um people withholding purchase and so
737
+ 36:20
738
+ forth and the pandemic but i think this big drop down as opposed to it being fairly stable like i
739
+ 36:26
740
+ don't as opposed to it being fairly stable i think you might get a big jump next year year over year maybe i don't know
741
+ 36:32
742
+ i'm just theorizing but um so anyway that's what she'll be focused on and then we also
743
+ 36:38
744
+ got i like grow look at check out gross margin so gross margin is a good one because usually with companies that are
745
+ 36:43
746
+ deteriorating everything's falling apart you see gross margin deteriorating as well like they can't management can't control
747
+ 36:49
748
+ costs they're losing control of stuff but check out gross markets like holding up fairly well this is three or average
749
+ 36:55
750
+ but even the three year average through 2020 28 it was only 27 percent in 2012 but at
751
+ 37:00
752
+ the uh right before the last consoles uh the last console cycle ended and so that's pretty good they're
753
+ 37:07
754
+ keeping it together and if we scroll over and start looking at individual individual years we see gross margin 29 this year above the past two years so
755
+ 37:14
756
+ even despite a huge sell-off a huge decline in revenues gross margins holding up pretty well
757
+ 37:19
758
+ and i see that and i think okay all right that's that's important to see right now but also is management doing a
759
+ 37:24
760
+ good job right now of of um focusing on higher margin stuff perhaps that's what i'd like to say if
761
+ 37:30
762
+ this were down another year be like oh it'd be less i believe less in the new management team but it's holding up okay
763
+ 37:37
764
+ and like i said it's even i mean it's on par with where it was in 2014 and above 2012 and stuff that's okay that's
765
+ 37:43
766
+ good but then you see sg a another important expense i i focus first on gross margin because like those costs are going to be
767
+ 37:50
768
+ more difficult to manage i think but sg a i feel like this is a a more easily fixed problem um
769
+ 37:57
770
+ and if you see this it's been ballooning in recent years it used to be 16 17 18 as a percentage of revenues
771
+ 38:02
772
+ right and then it's been increasing past couple years part of that is because the denominator's declining right revenues
773
+ 38:08
774
+ are going down but um it's not that alarming for me because it's fixable to me i feel like
775
+ 38:13
776
+ you can um and i think pe firms are noticing this too i think a lot and all the activists talk about this too but
777
+ 38:19
778
+ this is stuff that could be improved so it's not that i'd be more concerned with with the gross margin deteriorating than i would
779
+ 38:25
780
+ be sg a margin and yes i see this big jump up and you see new management well how come
781
+ 38:31
782
+ new management isn't raining this end there's a good question they need to maybe this i think this could take a little bit more time to
783
+ 38:37
784
+ to to bring back and especially because of such a big decline in revenues we'll see where that it's had in the coming years but
785
+ 38:43
786
+ something to keep your eye on all right so that's it and then then simple free castle so i already brought
787
+ 38:48
788
+ up simple free cash flow right but let's focus if we're trying to do some forecasting just some light forecasting i promise i promise it'll be
789
+ 38:54
790
+ light i think it's helpful to let's look at simple free cash flow margin
791
+ 39:01
792
+ forget the aggregate numbers but if we look at what it was over the past over the past cycle right this is through
793
+ 39:06
794
+ um may 3rd 2014 through today those what's that seven years we see an average if you go down here go to
795
+ 39:11
796
+ average on google sheets an average of 3.4 percent um but for those first couple years you saw
797
+ 39:17
798
+ an average of 4.9 but you obviously you cannot forecast
799
+ 39:22
800
+ that into the future um but i like nevertheless that's a good starting point that's what i mean people
801
+ 39:28
802
+ start that's the starting point you need to look at how a company's performed over the over the past
803
+ 39:34
804
+ and then i think and then try to determine how has the situation changed from how it was performing
805
+ 39:39
806
+ back then there's been a a meaningful change the past couple years the shift to digital right that's meaningful
807
+ 39:44
808
+ um and it's so much so that not only can we not start using five percent free casual margin i don't even think
809
+ 39:51
810
+ obviously the past couple years it's been much lower but i don't even think 3.4
811
+ 39:58
812
+ should be used uh for forecasting i don't even think half of that should be used like i wouldn't even use three percent two
813
+ 40:03
814
+ percent i wouldn't even use one percent because as a value investor i'm just trying to make sure my downside is um is protected and for that reason i
815
+ 40:12
816
+ don't want to i don't want to be too optimistic of my forecast so i've i propose that we use like 20 percent
817
+ 40:18
818
+ i've been thinking 20 percent of what that free cash flow margin was so instead of 3.4 percent everyone get your graphing calculators
819
+ 40:24
820
+ out right uh point zero three four times point two point six eight percent now now we're
821
+ 40:31
822
+ point six eight percent that's on that's lower that's almost is that the lowest if i if i add a decimal place there can i do that
823
+ 40:37
824
+ 0.59 so it's not the lowest but it's pretty low 0.68 percent so if we forecast out 0.68 simple free
825
+ 40:43
826
+ cash flow f margin moving forward then it's also a question of which what revenue should we forecast to try to get what the
827
+ 40:49
828
+ future free cash flows would be so at this point we're using the that figure so we can look to
829
+ 40:54
830
+ revenues we just gotta forecast our revenues that's what i mean we're just using a simplistic cash flow analysis here simple free cash
831
+ 41:00
832
+ flow margin revenues what do we think revenues will be moving forward we could say we'll get back to eight
833
+ 41:07
834
+ billion nine billion i think no way right there's no way you can forecast in a taking back out the previous highs in
835
+ 41:12
836
+ theory it's possible i don't even want to go down that path because i don't i'm not concerned with what's possible i'm concerned with
837
+ 41:18
838
+ what's probably most likely um and so i don't even so you could maybe
839
+ 41:25
840
+ we'll see a jump maybe we don't get back to eight maybe we get back to seven billion uh or maybe we get to 6.5 million remember i talked about a potential leap
841
+ 41:31
842
+ this is through q1 though through q2 and q3 we should see continued declines in revenues it
843
+ 41:36
844
+ will be lower than this so i propose for forecasting we free forecasts i've been thinking like 5
845
+ 41:41
846
+ million in revenues over six years like or let's do six years um in that it'll be all over the place
847
+ 41:49
848
+ right but if that's our average revenue figure then that's that'll be a number we can use for each year and i think that's
849
+ 41:55
850
+ do you think that's decent do you think that's too high does anyone think that an average of five billion through the first six years of a console
851
+ 42:02
852
+ cycle is too high for gamestop when they used to be it's almost it's not quite it's not half of what they used to
853
+ 42:08
854
+ do but it seems to me somewhat conservative um as does the simple free castle module we
855
+ 42:13
856
+ mentioned of 0.68 so if we use that i've already i used the online calculator just to keep it simple if i wanted to uh
857
+ 42:20
858
+ to do this precisely i do in a spreadsheet but i just whip this up really quickly before i kicked off this video i don't
859
+ 42:26
860
+ know if this calculator is accurate it doesn't matter because i can eyeball it and i know it's roughly in the ballpark of reality
861
+ 42:31
862
+ um so what i said was i took those i did simple free cash flow margin of 0.68 times uh 5 billion over 6 years just to
863
+ 42:39
864
+ keep it simple i know it will fluctuate and i get it and then i just bounced around the cash flows a little bit it all averages out
865
+ 42:45
866
+ to point six eight percent um so point six eight percent times five billion is a boat i think um
867
+ 42:51
868
+ was it 35 34
869
+ 42:56
870
+ 34 million so these averages out to about 34 35 million and then i just maybe second year they'll have the most
871
+ 43:02
872
+ blah blah blah and then i use a discount rate of 20 i feel like that's pretty conservative
873
+ 43:07
874
+ for the risks that are uh we're dealing with here um maybe you think it should be higher let me know
875
+ 43:13
876
+ let me know but using those using these assumptions at least i'm showing you my assumptions this is what i mean
877
+ 43:19
878
+ is that i see some bearish um some bearish gme comments and articles and stuff i
879
+ 43:24
880
+ think just show me your numbers because i want to try to uh compare to what i'm getting maybe you think the company cannot
881
+ 43:29
882
+ generate positive free cash flow moving forward i feel like a lot of people might think that but based on all that stuff that i
883
+ 43:34
884
+ showed previously of this of all these things that like the
885
+ 43:40
886
+ fundamental events that have been unfolding positively and why i think some stuff is overdone like you would have to explain to me
887
+ 43:46
888
+ that man you'd have to say management cannot get a control of this stuff or physical they'll have zero interest within a
889
+ 43:52
890
+ couple of years you'd have to be pretty bearish like you'd have to for this to be for this for these numbers that i
891
+ 43:57
892
+ used to not be conservative you'd have to have the like one of the most bearish outcomes that could possibly happen doesn't mean
893
+ 44:03
894
+ it can't happen it absolutely can happen but uh it just seems unlikely that that's what's what it's gonna unfold so
895
+ 44:10
896
+ if this unfolds then you have present value of about 125 million plus the book value of about
897
+ 44:16
898
+ let's just call it 400 million that's what i was trying to get at here then you're getting at 500 million
899
+ 44:21
900
+ that's twice what the market cap is that's twice the market cap and so
901
+ 44:26
902
+ that's what i think i think about gamestop i think it is it is at least a double i think
903
+ 44:32
904
+ it is probably a triple but it legit could be a four to five bagger it could be
905
+ 44:37
906
+ looking out i don't know looking out six to eighteen months or so um yeah so that's what i think if you
907
+ 44:43
908
+ disagree with that that's fine i like i said i've been wrong about plenty of things in the past um
909
+ 44:48
910
+ but i just i see has to impermanently see scion's analysis and i see my own analysis and that we all it strikes me as we're
911
+ 44:55
912
+ security analysts and we're looking at this and then i get really i don't so i mean i try to come up with why it's trading where it is because i'm really
913
+ 45:00
914
+ confused because i feel like other people either we're all wrong or everyone's looking at
915
+ 45:05
916
+ the wrong stuff and if they've gotten the wrong impression which i've seen happen before but this is this is something this is something
917
+ 45:12
918
+ because it's some of the biggest it's one of the biggest misperceptions i've seen in a while i think
919
+ 45:17
920
+ ever maybe i don't know um maybe not ever i don't know but um okay so that's that so let me
921
+ 45:23
922
+ know if you disagree and if you think they can't generate positive cash flow i'd be interested about that like if you think they're done
923
+ 45:29
924
+ and that this is it and that they cannot do it that that's that'd be interesting to me so let me know again either in the comments to this
925
+ 45:34
926
+ video or um or let me know on twitter or in the live stream or wherever the other
927
+ 45:40
928
+ we talk about fundamental events right so this is the thing you see in my other videos i do uh i'll do some technical analysis and i
929
+ 45:45
930
+ incorporate that into my approach but if you're really trying to make some big gains and stuff where you make the most money it's
931
+ 45:51
932
+ through fundamental analysis positions like this where i'm digging into the details and i'm using technical analysis
933
+ 45:57
934
+ to us to facilitate the position sometimes it is my focus sometimes technical analysis is my focus but i'm not making
935
+ 46:03
936
+ the biggest money on on that type of a position um that's why you see me digging through
937
+ 46:09
938
+ a lot of the fundamental stuff because it's a bigger position just because of positions in the roaring kitty model portfolio it doesn't mean i'm spending
939
+ 46:14
940
+ this much time on all the positions it's just the ones that are of higher interest to me anyway now to just pull up the chart do
941
+ 46:20
942
+ i already have it open i think i do um right there so here what is this this is let's do the monthly chart because
943
+ 46:26
944
+ it's a monthly chart the technical analysis they see this they think oh this is terrible especially last year they saw this that you can't
945
+ 46:31
946
+ touch this stock you can't touch this this looks terrible it still looks terrible from from the perspective of many technical analysts although you can
947
+ 46:37
948
+ see the rsa turning a bit here it's starting to level off nevertheless oh and this was with
949
+ 46:42
950
+ let's if we do oh if we do the um we can adjust for dividends by doing
951
+ 46:48
952
+ this i like to do this sometimes so a dividend adjusted we were over 50 dollars back in 2013 and remember oh i
953
+ 46:54
954
+ didn't even mention just remember those share count that i when i set up things that have kept my attention the share count it's been it's
955
+ 46:59
956
+ been halved it's been half since the uh the previous console cycle so something to bear in mind when you look at these historical
957
+ 47:05
958
+ prices and they also have enough cash and authorization to purchase another 100 million dollars worth of shares
959
+ 47:12
960
+ which could get the share countdown to 40 million i don't think it's likely right now but there's a case to be made that they
961
+ 47:18
962
+ should so just something to keep around for i don't think it's likely right now july 2020 i don't think it's going to happen this year but it's a possibility
963
+ 47:24
964
+ if it happens look out because um yeah because that's that's going to change it even more
965
+ 47:30
966
+ when you're buying back shares it's so important to buy it back below i mean book value per share or fair
967
+ 47:35
968
+ value per share more importantly and because i think fair value per share is quite a bit higher i it can be a good
969
+ 47:40
970
+ thing to buy back these shares and if they do it increases the per share value even more than it would otherwise so
971
+ 47:45
972
+ something to keep your eye on but um um sorry i lost the chart there so here's the chart there's a good it
973
+ 47:51
974
+ doesn't look that good in the monthly but starting to flatten out a bit you see the rsi moving up so if we switch it down to weekly just a three year weekly
975
+ 47:58
976
+ now it starts to get kind of interesting because now it's starting to build a base right look at this uh again it was looking kind of sketchy last year and
977
+ 48:05
978
+ then it comes back down then it had that big sell-off but this is the thing when you're looking at a chart you can't look at it in isolation everyone should everyone
979
+ 48:11
980
+ who analyzes charts should know this i see this you think oh look at that big self what happened that week and yes they did report earnings that week but
981
+ 48:17
982
+ everything was selling off that week it was a double they were retesting companies like gamestop and um some
983
+ 48:22
984
+ some some of the companies i dealing with were retesting the lows that week um that first week of um last week of
985
+ 48:29
986
+ march first week in april they were retesting lows anyway gamestop bounced right back it was only one week down then it comes back now it's flattening out around four
987
+ 48:36
988
+ bucks so i see this i think it's building the base um it doesn't mean that's how it's going to
989
+ 48:41
990
+ work out but i just mean along that base watch out because it could it could take off and then you look at a
991
+ 48:46
992
+ one and a half daily and then uh you get to here if you can get to five maybe they fill the gap and
993
+ 48:52
994
+ stuff we don't need to get into that that's not the point that obviously this is a fundamentals focused thesis right so why
995
+ 48:57
996
+ am i even pulling up the chart just to show that things kind of feel like they're changing a little bit and because if if the chart does change a
997
+ 49:03
998
+ bit and it starts to look more bullish you get other people who are piled into into it as well just not just the longer term fundamentals
999
+ 49:10
1000
+ focused people that's why i kind of look at this stuff because i know other people are too and if that chart turns um just people could start piling on and
1001
+ 49:16
1002
+ then you get the short interest too i didn't want to go into hopefully it's clear the short interest wasn't a isn't a
1003
+ 49:22
1004
+ a main point to this thesis but you need to acknowledge it it's out there could it be unwound in a systematic
1005
+ 49:28
1006
+ manner so that nothing happens yeah probably but this is i mean i don't know enough about the mechanics of the market to uh
1007
+ 49:33
1008
+ to be sure about that type of thing i'm not betting on a short squeeze but it seems like something where it could take place
1009
+ 49:39
1010
+ although i think if you want a real short squeeze you'd probably want a more levered company where people were truly like it was on the verge of bankruptcy
1011
+ 49:45
1012
+ and then suddenly it's not gamestop i don't know well you just got to see what happens but it would be nice if it
1013
+ 49:51
1014
+ goes up really quickly but when you see all this stuff kind of adding up you need to at least consider it take it into consideration but
1015
+ 49:57
1016
+ you have to start tart if we get closer to this one i mean we're in july console cycle's right around the corner it's still priced in the gutter it's pretty
1017
+ 50:03
1018
+ impressive to me but next couple months maybe sentiment will start to turn char will start to turn up people start
1019
+ 50:08
1020
+ seeing that uh i feel like people start seeing buries involved too that could help because um he's a legitimate successful value
1021
+ 50:15
1022
+ investor knows his [ __ ] and see the activists and the management's making moves and stuff uh maybe it could happen in the this by
1023
+ 50:22
1024
+ the end of 2020 but um probably with the thesis should unfold fully within 18 months if it
1025
+ 50:27
1026
+ doesn't happen by then i don't know i do think gamestop is going to be it seems likely to me it's going to be bought out by a pe firm who sees what i
1027
+ 50:34
1028
+ see and thinks all right we let's take this thing private and start um we can start taking out the free cash flows and stuff
1029
+ 50:39
1030
+ i think that'll happen it they it almost happened a couple years ago in 2018 and at that time it was priced it looked
1031
+ 50:45
1032
+ like the it would have been bought out between 1 billion and 2 billion something in that range 1.5 billion since then the share counts been whacked
1033
+ 50:52
1034
+ quite a bit so if that were fair value then we're looking at a much higher stock price but what would it when would it happen
1035
+ 50:58
1036
+ couple two years from now a year from now at this point i don't think it's gonna happen before the console i don't think
1037
+ 51:04
1038
+ it's gonna happen before november so i don't know i think it's i think that's where this company's going but i don't know the timing of it
1039
+ 51:09
1040
+ um but yeah a lot a lot of moving parts here so i think that's it and then finally
1041
+ 51:16
1042
+ just some things that uh that i don't think are even i don't even talk about them because it's not a big part of my thesis i'm just trying to
1043
+ 51:22
1044
+ make sure gamestop's still relevant and that it can generate some free cash flow but there's a whole bunch of um upside
1045
+ 51:27
1046
+ potential that's 100 seemingly 100 discounted even i discounted myself because i can't except for the first one extended
1047
+ 51:33
1048
+ interest and physical games as compared to like music and movies and stuff because people compared to that stuff and say oh it's going the same way
1049
+ 51:39
1050
+ but i mean as long as there's interest in november of 2020 and for the next year or two then
1051
+ 51:44
1052
+ gamestop's likely going to generate free cash flow in my biased opinion if you want to call it that but i mean what if it what if it
1053
+ 51:50
1054
+ goes on even longer than one or two years what if it goes five years or ten years um because people want those physical
1055
+ 51:56
1056
+ games i mean it's that's a similar case to movies and dvds but um excuse me dvds and cds and so forth but
1057
+ 52:03
1058
+ what if um this console storage limitations could that persist games will only get
1059
+ 52:09
1060
+ increasingly complex over time so is there a case to be made that they'll get so complex it'll be difficult to store
1061
+ 52:15
1062
+ 200 games on a system then you've got to delete them stuff it will be simplified longer term in the future but i'm just
1063
+ 52:20
1064
+ thinking five years what if there's still quite a bit physical demand looking on five years or 10 years 20 years i wouldn't bet on that
1065
+ 52:27
1066
+ but five years i'm like it could be 10 years maybe but probably not as much i i'm anyway that's so i'm just pointing that
1067
+ 52:34
1068
+ out that everyone's pretty much pricing in this this right now people are pricing in that there's like no interest right now which
1069
+ 52:39
1070
+ i think is a really aggressive bear case to make i i don't understand how anyone can be short game
1071
+ 52:44
1072
+ stop at four dollars that is really really risky really risky and yet you see a huge
1073
+ 52:50
1074
+ short position i think that's the bigger firm's trying to generate some extra income but i'm like oh my i see this i think what are you thinking
1075
+ 52:55
1076
+ what do you think in short and gamestop at this price point right now a couple years ago okay maybe if it rises again
1077
+ 53:01
1078
+ but right now what you're pricing in like a really apocalyptic scenario for game stop which
1079
+ 53:07
1080
+ could happen but i don't i wouldn't feel comfortable betting on that so that's what i mean if it's if it's even just a little bit better
1081
+ 53:12
1082
+ than that that's not being priced in then barry mentioned and other people mentioned two higher margin revenue streams via vendor partnerships i don't
1083
+ 53:18
1084
+ even know what that looks like um but barry mentioned it so that's a possibility i know they got reggie on
1085
+ 53:23
1086
+ the board too and they've been talking with microsoft about stuff but what what are the details what are the details of that
1087
+ 53:28
1088
+ what could that be could someone team up with gamestop so that it changes the business model a bit
1089
+ 53:33
1090
+ so that it could it could it could survive even longer i don't know i'm not really pricing it in but i know
1091
+ 53:39
1092
+ it's a distinct possibility um and then just if they do what if those test stores and tulsa work out
1093
+ 53:45
1094
+ they become something and i know with the pandemic too here they are trying to build a social gaming hub and stuff and uh
1095
+ 53:51
1096
+ but this is a thriving industry and gamestop's the only brick and mortar retailer and the retailer dedicated to well brick and
1097
+ 53:57
1098
+ mortar retailer dedicated to it has a presence and um seems like there could be something there i don't know if there is but
1099
+ 54:03
1100
+ can you imagine can you envision it i know people can envision it i'm just saying for this bullet point list here that i'm not saying
1101
+ 54:08
1102
+ is a big part of the thesis as is hopefully clear at this point of the video but it's a possibility a distinct
1103
+ 54:13
1104
+ possibility that you at least should talk about and if stuff like this ever happened then if you're looking out two three
1105
+ 54:19
1106
+ four years gamestop could be the stock price could be quite a bit higher especially after all those sharer
1107
+ 54:24
1108
+ purchases and so forth um so yeah there's just additional things that could be that could be
1109
+ 54:29
1110
+ factored in i think that covers most of the big items um
1111
+ 54:34
1112
+ and again if you check out the other the other commentaries and letters and so forth for additional information i
1113
+ 54:39
1114
+ covered some of the ones that i consider more important to me there's other things too maybe i did miss something important i don't know i'm losing track
1115
+ 54:45
1116
+ but uh yeah let me know your thoughts if you'd see a blind spot or if you think i'm missing something or if you strongly disagree with stuff like especially my
1117
+ 54:52
1118
+ forecasts and stuff or you think i'm i'm blindly bullish or that i'm i'm i'm biased and stuff yeah let me
1119
+ 54:58
1120
+ know your thoughts and uh in the comments of this in the in the live stream on twitter wherever because
1121
+ 55:03
1122
+ i want to be sure i'm right about this i feel like we are but i've been wrong before so i
1123
+ 55:08
1124
+ i try to do as much analysis as i can to be as confident in the position as possible so
1125
+ 55:13
1126
+ that's it i hope you liked this first video of the the the kitty corner here and in gamestop and let's see if it's an
1127
+ 55:19
1128
+ exciting final few months of 2020 and um yeah tune in for more videos about other companies probably won't be
1129
+ 55:25
1130
+ as long as this one but i hope hoping to share my thoughts on some stocks just to give you some insight into where i'm at with things
1131
+ 55:30
1132
+ but that's it thanks for watching and i'll see you around
1133
+ 56:31
1134
+ you
requirements.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ chainlit==0.6.2
2
+ langchain==0.0.265
3
+ tiktoken==0.4.0
4
+ openai==0.27.8
5
+ faiss-cpu==1.7.4