backup
This commit is contained in:
commit
e0f6d9d69d
@ -0,0 +1,266 @@
|
||||
file:///home/aneuhmanh/Artberry-web/templates/navbar.html {"mtime":1752183993910,"ctime":1752183993910,"size":7180,"etag":"3egkqslp17ej","orphaned":false,"typeId":""}
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<link rel=stylesheet href="{{ url_for('static', filename='css/reset.css') }}">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="header">
|
||||
<div class="navbar">
|
||||
<div class="logo-search-container">
|
||||
<div class="logo-container">
|
||||
<img src="{{ url_for('static', filename='navbar/logo-art.svg') }}">
|
||||
<img src="{{ url_for('static', filename='navbar/logo-text.svg') }}">
|
||||
</div>
|
||||
<div class="search">
|
||||
<div class="search__input">
|
||||
<div class="search__input-field">
|
||||
<img src="{{ url_for('static', filename='navbar/search.svg') }}">
|
||||
<input class="search_input" placeholder="Поиск">
|
||||
</div>
|
||||
<div class="search__dropdown-btn">
|
||||
<img src="{{ url_for('static', filename='navbar/video-icon.svg') }}" width="33px" height="24px">
|
||||
<img src="{{ url_for('static', filename='navbar/tray-icon.svg') }}">
|
||||
</div>
|
||||
</div>
|
||||
<div class="search__rand-btn">
|
||||
<img alt="" src="{{ url_for('static', filename='navbar/random-icon.svg') }}" width="20px" height="19px" style="flex-shrink: 0;">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="categories">
|
||||
<div class="categories__btn"><span class="H2">ВИДЕО</span><img src="{{ url_for('static', filename='navbar/lock.svg') }}"></div>
|
||||
<div class="categories__btn"><span class="H2">ГИФКИ</span><img src="{{ url_for('static', filename='navbar/lock.svg') }}"></div>
|
||||
<div class="categories__btn"><span class="H2">МАНГА</span></div>
|
||||
<div class="categories__btn"><span class="H2">АРТЫ</span></div>
|
||||
</div>
|
||||
<div class="discord-icon-login-btn">
|
||||
<img alt="" src="{{ url_for('static', filename='navbar/discord-icon.svg') }}">
|
||||
<div class="login-btn">
|
||||
<span class="Buttons2">ВОЙТИ</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="subnav">
|
||||
<div class="subnav__btn subnav__start H2 H2-subnav"><span>ТЕГИ</span><img src="{{ url_for('static', filename='navbar/lock.svg') }}"></div>
|
||||
<div class="subnav__btn H2 H2-subnav"><span>КАТЕГОРИИ</span><img src="{{ url_for('static', filename='navbar/lock.svg') }}"></div>
|
||||
<div class="subnav__btn H2 H2-subnav"><span>ПЕРСОНАЖИ</span><img src="{{ url_for('static', filename='navbar/lock.svg') }}"></div>
|
||||
<div class="subnav__btn subnav__end H2 H2-subnav"><span>КОЛЛЕКЦИИ</span><img src="{{ url_for('static', filename='navbar/lock.svg') }}"></div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
<style>
|
||||
:root {
|
||||
--NewViolet: rgba(70, 65, 153, 1);
|
||||
--Black: rgba(5, 4, 10, 1);
|
||||
--White: rgba(255, 255, 255, 1);
|
||||
--Light-Violet: rgba(135, 132, 201, 1);
|
||||
}
|
||||
|
||||
body {
|
||||
display: inline-flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
background: var(--Black, #05040A);
|
||||
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
|
||||
|
||||
width: 100%;
|
||||
}
|
||||
.subnav{
|
||||
display: flex;
|
||||
width: 1500px;
|
||||
max-width: 1500px;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.subnav__start{
|
||||
border-radius: 5px 0px 0px 20px;
|
||||
border-right: 1px solid var(--Light-Violet, #8784C9);
|
||||
background: var(--NewViolet, #464199);
|
||||
}
|
||||
.subnav__end{
|
||||
border-radius: 0px 5px 20px 0px;
|
||||
border-left: 1px solid var(--Light-Violet, #8784C9);
|
||||
background: var(--NewViolet, #464199);
|
||||
}
|
||||
.subnav__btn{
|
||||
display: flex;
|
||||
height: 50px;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
flex: 1 0 0;
|
||||
border-right: 1px solid var(--Light-Violet, #8784C9);
|
||||
background: var(--NewViolet, #464199);
|
||||
}
|
||||
.header {
|
||||
display: flex;
|
||||
height: 170px;
|
||||
padding: 0px 210px;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
align-self: stretch;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
display: flex;
|
||||
width: 1500px;
|
||||
max-width: 1500px;
|
||||
padding: 30px 0px;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.subnav {
|
||||
display: flex;
|
||||
width: 1500px;
|
||||
max-width: 1500px;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
|
||||
}
|
||||
|
||||
.logo-search-container {
|
||||
display: flex;
|
||||
min-width: 267px;
|
||||
max-width: 732px;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
flex: 1 0 0;
|
||||
}
|
||||
|
||||
.logo-container {
|
||||
display: flex;
|
||||
padding-right: 40px;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.search {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
flex: 1 0 0;
|
||||
}
|
||||
|
||||
.search__input {
|
||||
display: flex;
|
||||
height: 60px;
|
||||
min-width: 200px;
|
||||
max-width: 385px;
|
||||
padding: 15px;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
flex: 1 0 0;
|
||||
|
||||
border-radius: 20px;
|
||||
border: 2px solid var(--NewViolet, #464199);
|
||||
}
|
||||
|
||||
.search__rand-btn {
|
||||
display: flex;
|
||||
height: 60px;
|
||||
padding: 15px;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
border-radius: 10px;
|
||||
background: var(--NewViolet, #464199);
|
||||
}
|
||||
|
||||
.search__input-field {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
flex: 1 0 0;
|
||||
}
|
||||
|
||||
.search_input {
|
||||
color: var(--Light-Violet, #8784C9);
|
||||
width:100%;
|
||||
font-family: Nunito;
|
||||
font-size: 14px;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
line-height: normal;
|
||||
}
|
||||
.search_input::placeholder{
|
||||
color: var(--Light-Violet, #8784C9);
|
||||
opacity:1;
|
||||
}
|
||||
.search__dropdown-btn {
|
||||
display: flex;
|
||||
padding-left: 10px;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.categories {
|
||||
display: flex;
|
||||
min-width: 300px;
|
||||
max-width: 450px;
|
||||
padding: 0px 10px;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
flex: 1 0 0;
|
||||
}
|
||||
.H2-subnav {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
}
|
||||
.H2 {
|
||||
color: var(--White, #FFF);
|
||||
font-family: Nunito;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
line-height: normal;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.categories__btn {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.discord-icon-login-btn {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.login-btn {
|
||||
display: flex;
|
||||
padding: 10px 15px;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
border-radius: 20px;
|
||||
background: var(--NewViolet, #464199);
|
||||
}
|
||||
|
||||
.Buttons2 {
|
||||
color: var(--White, #FFF);
|
||||
font-family: Nunito;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
line-height: normal;
|
||||
}
|
||||
</style>
|
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/00044a3aa5e26dc4_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/00044a3aa5e26dc4_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/01a998e5340b15b5_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/01a998e5340b15b5_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/02234ee5cfaf825e_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/02234ee5cfaf825e_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/03c83842162ae556_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/03c83842162ae556_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/0722b952d7ad3c23_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/0722b952d7ad3c23_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/0a86dd042e99554f_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/0a86dd042e99554f_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/107db7a5bdd9c18a_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/107db7a5bdd9c18a_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/12883affac08ee89_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/12883affac08ee89_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/13ef212d78614dfc_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/13ef212d78614dfc_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/17d3dc2f2718f05d_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/17d3dc2f2718f05d_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/1d18315feae0802b_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/1d18315feae0802b_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/1d42f3b8aa70a870_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/1d42f3b8aa70a870_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/1e6aa16dc9ca157c_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/1e6aa16dc9ca157c_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/20a5b6acc073227e_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/20a5b6acc073227e_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/237d1d811d7f6cae_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/237d1d811d7f6cae_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/23fc248f9bc0d85b_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/23fc248f9bc0d85b_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/258d3fa019e430cc_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/258d3fa019e430cc_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/259cf71fec883125_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/259cf71fec883125_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/266c7d42d158b55b_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/266c7d42d158b55b_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/28a134e9605198f1_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/28a134e9605198f1_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/2a2d69b733d77312_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/2a2d69b733d77312_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/2ab912b544a7e912_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/2ab912b544a7e912_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/306bfde56ca5839e_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/306bfde56ca5839e_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/30bfb77195186b23_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/30bfb77195186b23_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/333ea780c21f1b34_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/333ea780c21f1b34_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/3527d4c7dc85da12_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/3527d4c7dc85da12_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/352d01cda1bdaeb4_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/352d01cda1bdaeb4_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/3d5e111983cd6b18_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/3d5e111983cd6b18_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/409965f5a317839f_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/409965f5a317839f_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/465936a8b123cb70_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/465936a8b123cb70_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/4d229100543e0dbd_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/4d229100543e0dbd_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/4f2af1d9a33387a9_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/4f2af1d9a33387a9_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/5283edf90cf4ab50_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/5283edf90cf4ab50_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/5337e0e79113d41c_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/5337e0e79113d41c_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/57c2cb7da326fc31_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/57c2cb7da326fc31_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/5842f0ef21806447_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/5842f0ef21806447_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/5c03a8aba1be3e72_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/5c03a8aba1be3e72_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/672043164b8a8de3_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/672043164b8a8de3_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/69c0c3c15a1b43cc_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/69c0c3c15a1b43cc_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/6a7194f8c88dde94_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/6a7194f8c88dde94_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/6cd2ad1a1b76a5b3_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/6cd2ad1a1b76a5b3_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/704d1f4cccb97bca_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/704d1f4cccb97bca_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/71aebc251acdc415_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/71aebc251acdc415_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/72e6e999a878c1a6_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/72e6e999a878c1a6_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/74d5b470f61d1755_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/74d5b470f61d1755_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/7c61941e67915db1_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/7c61941e67915db1_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/81312723f63b8436_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/81312723f63b8436_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/83bab8ca0c95e44d_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/83bab8ca0c95e44d_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/8abb2f708612376d_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/8abb2f708612376d_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/8c75d44023ba5517_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/8c75d44023ba5517_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/8cb6745b9abff1df_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/8cb6745b9abff1df_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/93eff91f93bd4809_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/93eff91f93bd4809_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/96c5e2c72697d7c3_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/96c5e2c72697d7c3_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/96f00ee85ab04046_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/96f00ee85ab04046_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/9761f4963148b620_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/9761f4963148b620_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/9848d109e1b039e1_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/9848d109e1b039e1_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/9870c0982fd26419_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/9870c0982fd26419_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/9a84560454676db6_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/9a84560454676db6_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/9f50bddbd978eddd_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/9f50bddbd978eddd_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/a061be77bd33dd60_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/a061be77bd33dd60_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/a45d5fe964eea344_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/a45d5fe964eea344_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/a7ff3b45b6867410_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/a7ff3b45b6867410_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/a9c968ac67800f8e_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/a9c968ac67800f8e_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/ad0f7470c6542bc9_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/ad0f7470c6542bc9_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/af2feaf012a0f47e_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/af2feaf012a0f47e_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/b19c310ea0ed6c22_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/b19c310ea0ed6c22_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/b4e88685743cc73f_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/b4e88685743cc73f_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/b695b3f7ea3f1a8e_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/b695b3f7ea3f1a8e_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/baa96f4665834dea_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/baa96f4665834dea_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/be89ee173b505c06_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/be89ee173b505c06_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/c213003918a0e9e1_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/c213003918a0e9e1_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/c279e135851c750f_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/c279e135851c750f_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/c3151b06ce56bf1e_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/c3151b06ce56bf1e_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/c7758c5b7d14efc8_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/c7758c5b7d14efc8_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/cc6abec9c5023dc6_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/cc6abec9c5023dc6_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/cc91a339f375c49b_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/cc91a339f375c49b_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/cec197d5901bb9de_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/cec197d5901bb9de_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/d121e2a6335b7510_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/d121e2a6335b7510_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/d38308acdf617444_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/d38308acdf617444_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/d76801fdd0daaf4c_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/d76801fdd0daaf4c_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/e3996cf392574bde_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/e3996cf392574bde_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/e48b39bc06e88eb6_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/e48b39bc06e88eb6_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/e753281126ae6463_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/e753281126ae6463_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/eb1484a3f7e08fc2_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/eb1484a3f7e08fc2_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/f5b566a4dfb4ca51_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/f5b566a4dfb4ca51_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/f6faebe50cef9689_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/f6faebe50cef9689_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/f7f1086c53fd8e45_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/f7f1086c53fd8e45_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/f8a646dde081b1ab_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/f8a646dde081b1ab_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/fe55a9362a282a6d_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/fe55a9362a282a6d_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/fe9c57a5466b07c2_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/fe9c57a5466b07c2_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/fecd8a02b49b63fb_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/fecd8a02b49b63fb_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/ff4e9490a3311985_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/ff4e9490a3311985_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/ff5b8b22a551f482_0
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/ff5b8b22a551f482_0
Normal file
Binary file not shown.
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/index
Normal file
BIN
home/aneuhmanh/.config/Code/Cache/Cache_Data/index
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
{"python.locator":"native","python.analysis.usePullDiagnostics":true,"python.analysis.enableEditableInstalls":true,"chat.edits2.enabled":false}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user