diff --git a/Code/chadL/Javascript/lab1/app.js b/Code/chadL/Javascript/lab1/app.js
new file mode 100644
index 00000000..0a60355e
--- /dev/null
+++ b/Code/chadL/Javascript/lab1/app.js
@@ -0,0 +1,28 @@
+let body = document.body
+let unit = prompt('Enter a unit of measure: inches, feet, meters, yards, kilometers, miles')
+let number = prompt('Enter number to be converted')
+console.log(unit);
+console.log(number);
+
+let values = {"feet": 0.3048,
+ "miles": 1609.34,
+ "meters": 1,
+ "kilometers": 1000,
+ "yards": 0.9144,
+ "inch:": 0.0254
+}
+
+
+let unitValue = values[unit];
+let change = unitValue * number;
+body.append(`Your input ${unit},
+ conversion: ${change} meters.`);
+
+
+document.body.style.backgroundColor = "tan";
+
+
+document.body.style.font = "italic bold 25px arial,serif";
+
+
+document.getElementById("border").style.borderTop = "thick solid #0000FF";
\ No newline at end of file
diff --git a/Code/chadL/Javascript/lab1/index.html b/Code/chadL/Javascript/lab1/index.html
new file mode 100644
index 00000000..3e6748c5
--- /dev/null
+++ b/Code/chadL/Javascript/lab1/index.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
Conversion Calculator
+
+
+
Please enter your unit of measure to convert.
+
+
\ No newline at end of file
diff --git a/Code/chadL/Python/Lab14.py b/Code/chadL/Python/Lab14.py
new file mode 100644
index 00000000..4f4e2c88
--- /dev/null
+++ b/Code/chadL/Python/Lab14.py
@@ -0,0 +1,69 @@
+#1
+"""
+import time
+import requests
+import re
+
+response = requests.get("https://icanhazdadjoke.com", headers={
+ 'Accept': 'application/json'
+})
+
+response_dict = response.json()
+joke = response_dict["joke"]
+
+
+joke_list = re.split(pattern = r"[.,?!]",
+ string = joke)
+
+for i in joke_list:
+ if i == '':
+ del joke_list[-1]
+
+print(joke_list[0])
+time.sleep(3)
+print(joke_list[1])
+"""
+
+#2
+import time
+import requests
+import re
+
+while True:
+
+ search_term = input("What would you like to search for? Type 'done' to exit. ")
+
+ if search_term == "done":
+ break
+
+ response = requests.get(f"https://icanhazdadjoke.com/search?term=${search_term}", headers={
+ 'Accept': 'application/json'
+ })
+
+ response_dict = response.json()
+ print(response_dict)
+
+ """
+ joke = response_dict["joke"]
+
+
+ joke_list = re.split(pattern = r"[.,?!]",
+ string = joke)
+
+ for i in joke_list:
+ if i == '':
+ del joke_list[-1]
+
+ print(joke_list[0])
+ time.sleep(3)
+ print(joke_list[1])
+ """
+
+Where do rabbits go after they get married? On a bunny-moon. Where do rabbits go after they get married
+PZDd', 'joke': 'When does a joke become a dad joke? When it becomes apparent.'},
+{'id': 'FBQ7wskbMmb', 'joke': "Want to hear a joke about construction? Nah, I'm still working on it."},
+{'id': 'rc2E6EdiNe', 'joke': "Want to hear my pizza joke? Never mind, it's too cheesy."},
+{'id': 'EYo4TCAdUf', 'joke': 'I tried to write a chemistry joke, but could never get a reaction.'},
+{'id': '8USSSfVn3ob', 'joke': "I've been trying to come up with a dad joke about momentum . . . but I just can't seem to get it going."},
+{'id': 'ozPmbFtWDlb', 'joke': "Some people say that comedians who tell one too many light many levels."}
+], 'search_term': '$joke', 'status': 200, 'total_jokes': 12, 'total_pages': 1}
\ No newline at end of file
diff --git a/Code/chadL/Python/lab7.py b/Code/chadL/Python/lab7.py
new file mode 100644
index 00000000..2e80331b
--- /dev/null
+++ b/Code/chadL/Python/lab7.py
@@ -0,0 +1,47 @@
+#Lab 7: ROT Cipher
+
+hacker = input("What shall we encypt? ").lower() #ask user for words to encypt
+
+rot13_dict = { #dictinary of associated letters
+ "a": "n",
+ "b": "o",
+ "c": "p",
+ "d": "q",
+ "e": "r",
+ "f": "s",
+ "g": "t",
+ "h": "u",
+ "i": "v",
+ "j": "w",
+ "k": "x",
+ "l": "y",
+ "m": "z",
+ "n": "a",
+ "o": "b",
+ "p": "c",
+ "q": "d",
+ "r": "e",
+ "s": "f",
+ "t": "g",
+ "u": "h",
+ "v": "i",
+ "w": "j",
+ "x": "k",
+ "y": "l",
+ "z": "m",
+ " ": " "
+}
+
+hacker = list(hacker) #turn input into list
+
+
+def rot_13(hacker): #fucntion to turn input into list.
+ rot13_list = []
+ for letter in hacker: #loop to add appended letter to list
+ cypher = rot13_dict[letter]
+ rot13_list.append(cypher) # add cypher to rot13 list
+
+ final_answer = ''.join(rot13_list) # .join seperates everything except the letters.
+ print(f"Your encrypted code is: {final_answer}")
+
+rot_13(hacker)
diff --git a/Code/chadL/Python/lab8.py b/Code/chadL/Python/lab8.py
new file mode 100644
index 00000000..c00542c1
--- /dev/null
+++ b/Code/chadL/Python/lab8.py
@@ -0,0 +1,44 @@
+data = [1, 2 , 3, 4, 5, 6, 7, 6, 5, 4, 5, 6, 7, 8, 9, 8, 7, 6, 7, 8, 9] #peaks and valleys list
+
+
+def peaks(data):
+ for index, number in enumerate(data):
+ if index == 0 or index == len(data) -1: #not running first index or last
+ continue
+
+ elif number > data[index -1 ] and number > data[index + 1]: #checking if index before or after is less then number
+ print(index)
+
+def valleys(data):
+ for index, number in enumerate(data):
+ if index == 0 or index == len(data) -1:
+ continue
+
+ elif number < data[index -1 ] and number < data[index + 1]: ##checking if index before or after is greater then number
+ print(index)
+
+def peaks_valleys(data):
+ for index, number in enumerate(data):
+ if index == 0 or index == len(data) -1:
+ continue
+
+ elif number > data[index -1 ] and number > data[index + 1]:
+ print(index)
+
+ elif number < data[index -1 ] and number < data[index + 1]:
+ print(index)
+
+peaks_valleys(data)
+
+
+"""
+Lab 8: Peaks and Valleys
+Define the following functions:
+
+peaks - Returns the indices of peaks. A peak has a lower number on both the left and the right.
+
+valleys - Returns the indices of 'valleys'. A valley is a number with a higher number on both the left and the right.
+
+peaks_and_valleys - uses the above two functions to compile a single list of the peaks and valleys in order of appearance in the original data.
+"""
+
diff --git a/Code/chadL/Python/lab9.py b/Code/chadL/Python/lab9.py
new file mode 100644
index 00000000..617fb14b
--- /dev/null
+++ b/Code/chadL/Python/lab9.py
@@ -0,0 +1,97 @@
+# compute ARI
+
+with open("text.txt") as file:
+ text = file.read()
+
+character_count = 0
+for character in text:
+ if character == " " or character == "," or character == ".":
+ continue
+ else:
+ character_count += 1
+
+word_list = text.split(" ")
+word_list = len(word_list)
+
+sentence_list = text.split(".")
+sentence_list = len(sentence_list)
+
+formula = 4.71 * (character_count / word_list) + 0.5 * (word_list / sentence_list) - 21.43
+print(formula)
+
+
+ari_scale = {
+ 1: {'ages': '5-6', 'grade_level': 'Kindergarten'},
+ 2: {'ages': '6-7', 'grade_level': '1st Grade'},
+ 3: {'ages': '7-8', 'grade_level': '2nd Grade'},
+ 4: {'ages': '8-9', 'grade_level': '3rd Grade'},
+ 5: {'ages': '9-10', 'grade_level': '4th Grade'},
+ 6: {'ages': '10-11', 'grade_level': '5th Grade'},
+ 7: {'ages': '11-12', 'grade_level': '6th Grade'},
+ 8: {'ages': '12-13', 'grade_level': '7th Grade'},
+ 9: {'ages': '13-14', 'grade_level': '8th Grade'},
+ 10: {'ages': '14-15', 'grade_level': '9th Grade'},
+ 11: {'ages': '15-16', 'grade_level': '10th Grade'},
+ 12: {'ages': '16-17', 'grade_level': '11th Grade'},
+ 13: {'ages': '17-18', 'grade_level': '12th Grade'},
+ 14: {'ages': '18-22', 'grade_level': 'College'}
+}
+
+#print(f'The ARI for "text.txt" is 12 This corresponds to a 11th Grade level of difficulty that is suitable for an average person {ari_scale[]} years old.')
+
+
+'''
+ Score Ages Grade Level
+ 1 5-6 Kindergarten
+ 2 6-7 First Grade
+ 3 7-8 Second Grade
+ 4 8-9 Third Grade
+ 5 9-10 Fourth Grade
+ 6 10-11 Fifth Grade
+ 7 11-12 Sixth Grade
+ 8 12-13 Seventh Grade
+ 9 13-14 Eighth Grade
+ 10 14-15 Ninth Grade
+ 11 15-16 Tenth Grade
+ 12 16-17 Eleventh grade
+ 13 17-18 Twelfth grade
+ 14 18-22 College
+
+
+Lab 9: Compute Automated Readability Index
+Compute the ARI for a given body of text loaded in from a file.
+The automated readability index (ARI) is a formula for computing the U.S. grade level for a given block of text.
+The general formula to compute the ARI is as follows:
+
+ARI Formula
+
+The score is computed by multiplying the number of characters divided by the number of words by 4.71,
+adding the number of words divided by the number of sentences multiplied by 0.5, and subtracting 21.43.
+If the result is a decimal, always round up.
+Scores greater than 14 should be presented as having the same age and grade level as scores of 14.
+
+ ari_scale = {
+ 1: {'ages': '5-6', 'grade_level': 'Kindergarten'},
+ 2: {'ages': '6-7', 'grade_level': '1st Grade'},
+ 3: {'ages': '7-8', 'grade_level': '2nd Grade'},
+ 4: {'ages': '8-9', 'grade_level': '3rd Grade'},
+ 5: {'ages': '9-10', 'grade_level': '4th Grade'},
+ 6: {'ages': '10-11', 'grade_level': '5th Grade'},
+ 7: {'ages': '11-12', 'grade_level': '6th Grade'},
+ 8: {'ages': '12-13', 'grade_level': '7th Grade'},
+ 9: {'ages': '13-14', 'grade_level': '8th Grade'},
+ 10: {'ages': '14-15', 'grade_level': '9th Grade'},
+ 11: {'ages': '15-16', 'grade_level': '10th Grade'},
+ 12: {'ages': '16-17', 'grade_level': '11th Grade'},
+ 13: {'ages': '17-18', 'grade_level': '12th Grade'},
+ 14: {'ages': '18-22', 'grade_level': 'College'}
+}
+the output should look like:
+--------------------------------------------------------
+
+The ARI for gettysburg-address.txt is 12
+This corresponds to a 11th Grade level of difficulty
+that is suitable for an average person 16-17 years old.
+
+--------------------------------------------------------
+'''
diff --git a/Code/chadL/django/manage.py b/Code/chadL/django/manage.py
new file mode 100644
index 00000000..6be564d2
--- /dev/null
+++ b/Code/chadL/django/manage.py
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+"""Django's command-line utility for administrative tasks."""
+import os
+import sys
+
+
+def main():
+ """Run administrative tasks."""
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'todo_proj.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
+
+
+if __name__ == '__main__':
+ main()
diff --git a/Code/chadL/django/redo/redo_app/manage.py b/Code/chadL/django/redo/redo_app/manage.py
new file mode 100644
index 00000000..f88eaee8
--- /dev/null
+++ b/Code/chadL/django/redo/redo_app/manage.py
@@ -0,0 +1,21 @@
+#!/usr/bin/env python
+"""Django's command-line utility for administrative tasks."""
+import os
+import sys
+
+
+def main():
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'redo_app.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
+
+
+if __name__ == '__main__':
+ main()
diff --git a/Code/chadL/django/redo/redo_app/redid_proj/__init__.py b/Code/chadL/django/redo/redo_app/redid_proj/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/Code/chadL/django/redo/redo_app/redid_proj/asgi.py b/Code/chadL/django/redo/redo_app/redid_proj/asgi.py
new file mode 100644
index 00000000..3f19c680
--- /dev/null
+++ b/Code/chadL/django/redo/redo_app/redid_proj/asgi.py
@@ -0,0 +1,16 @@
+"""
+ASGI config for redo_app project.
+
+It exposes the ASGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/3.0/howto/deployment/asgi/
+"""
+
+import os
+
+from django.core.asgi import get_asgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'redo_app.settings')
+
+application = get_asgi_application()
diff --git a/Code/chadL/django/redo/redo_app/redid_proj/settings.py b/Code/chadL/django/redo/redo_app/redid_proj/settings.py
new file mode 100644
index 00000000..0a52bac5
--- /dev/null
+++ b/Code/chadL/django/redo/redo_app/redid_proj/settings.py
@@ -0,0 +1,122 @@
+"""
+Django settings for redo_app project.
+
+Generated by 'django-admin startproject' using Django 3.0.14.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/3.0/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/3.0/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = '=-o)e-!f-@8_)&%h4c7^t4v6&9g6&b@22_nijoya^t_&2t9yrz'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+ 'redo_app',
+ 'redid_proj',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'redo_app.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'redo_app.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/3.0/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/3.0/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/3.0/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'America/Los_Angeles'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/3.0/howto/static-files/
+
+STATIC_URL = '/static/'
diff --git a/Code/chadL/django/redo/redo_app/redid_proj/urls.py b/Code/chadL/django/redo/redo_app/redid_proj/urls.py
new file mode 100644
index 00000000..91720867
--- /dev/null
+++ b/Code/chadL/django/redo/redo_app/redid_proj/urls.py
@@ -0,0 +1,23 @@
+"""redo_app URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/3.0/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from xml.etree.ElementInclude import include
+from django.contrib import admin
+from django.urls import path, include
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path(''/ include('redo_app.urls'))
+]
diff --git a/Code/chadL/django/redo/redo_app/redid_proj/wsgi.py b/Code/chadL/django/redo/redo_app/redid_proj/wsgi.py
new file mode 100644
index 00000000..46fb7c1f
--- /dev/null
+++ b/Code/chadL/django/redo/redo_app/redid_proj/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for redo_app project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/3.0/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'redo_app.settings')
+
+application = get_wsgi_application()
diff --git a/Code/chadL/django/redo/redo_app/redo_app/__init__.py b/Code/chadL/django/redo/redo_app/redo_app/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/Code/chadL/django/redo/redo_app/redo_app/admin.py b/Code/chadL/django/redo/redo_app/redo_app/admin.py
new file mode 100644
index 00000000..8c38f3f3
--- /dev/null
+++ b/Code/chadL/django/redo/redo_app/redo_app/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/Code/chadL/django/redo/redo_app/redo_app/apps.py b/Code/chadL/django/redo/redo_app/redo_app/apps.py
new file mode 100644
index 00000000..eb603e82
--- /dev/null
+++ b/Code/chadL/django/redo/redo_app/redo_app/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class RedoAppConfig(AppConfig):
+ default_auto_field = 'django.db.models.BigAutoField'
+ name = 'redo_app'
diff --git a/Code/chadL/django/redo/redo_app/redo_app/migrations/__init__.py b/Code/chadL/django/redo/redo_app/redo_app/migrations/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/Code/chadL/django/redo/redo_app/redo_app/models.py b/Code/chadL/django/redo/redo_app/redo_app/models.py
new file mode 100644
index 00000000..71a83623
--- /dev/null
+++ b/Code/chadL/django/redo/redo_app/redo_app/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/Code/chadL/django/redo/redo_app/redo_app/templates/redo_app/index.html b/Code/chadL/django/redo/redo_app/redo_app/templates/redo_app/index.html
new file mode 100644
index 00000000..4dcd4a14
--- /dev/null
+++ b/Code/chadL/django/redo/redo_app/redo_app/templates/redo_app/index.html
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+ Encryptor
+
+
+
+ "You're the one what killed those men by leading them down the wrong path.
+ Because you're weak and stupid! It's time for the Ravagers to rise once again to glory with a new captain: Taserface!"
+ ―Taserface to Yondu Udonta
+
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quibusdam, necessitatibus minima! Quas, in eligendi. Incidunt, facere animi. Tempora, mollitia odio eos recusandae laudantium temporibus ullam minus nihil quidem excepturi sint.
+
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Molestiae suscipit qui expedita voluptas, tempore nobis doloremque aut officia odit natus debitis sequi eos id! Mollitia fuga asperiores laudantium eos veritatis!
+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Perspiciatis at possimus beatae, sed amet omnis explicabo, recusandae, minus nisi doloribus commodi? Molestias rem commodi dignissimos neque asperiores suscipit temporibus cumque!
+
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Est nostrum quos alias eum harum natus molestiae modi, ipsum eligendi error aliquid vitae quod deleniti iure, culpa debitis laborum dolorem ullam?
+
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Est nostrum quos alias eum harum natus molestiae modi, ipsum eligendi error aliquid vitae quod deleniti iure, culpa debitis laborum dolorem ullam?
+ Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nihil earum
+ rerum porro ducimus, rem dolorum, nisi qui possimus, assumenda
+ quisquam ipsum aliquam nostrum velit exercitationem harum similique.
+ Dolorem, nostrum sequi.
+
+
+
+
Title 2
+
+ Architecto corrupti, veritatis ullam facilis odit nihil, deleniti
+ soluta accusantium, corporis iste dolore! A itaque deleniti
+ dignissimos cum, consequuntur natus aliquam nemo ex aut non obcaecati
+ ipsum perferendis reiciendis exercitationem.
+
+
+
+
Title 3
+
+ Pariatur voluptas ratione illo asperiores ad, non fugiat. Harum, saepe
+ veniam. Facere provident reiciendis odit aliquam repudiandae eligendi.
+ Ipsa suscipit delectus deleniti officiis quod deserunt asperiores
+ blanditiis amet corrupti quaerat!
+
+
+
+
Title 4
+
+ Culpa quisquam, eos sapiente, aliquid fuga dolorem repudiandae totam,
+ in molestias iste itaque ipsa! Quod adipisci possimus, natus sunt rem
+ voluptate odio obcaecati sit nihil suscipit nam harum. Nostrum, rerum.
+
+
+
+
Title 5
+
+ Qui odio aspernatur vero voluptatum, similique minus blanditiis et
+ cupiditate autem quia atque expedita, ducimus sequi, non vel totam ab.
+ Libero cumque eos assumenda dolorem officia, expedita sint dolorum
+ itaque!
+
+
+
+
Title 6
+
+ Deserunt perspiciatis excepturi ipsum consequatur aperiam quod veniam
+ distinctio doloribus. Velit, dignissimos sapiente error qui fugit,
+ ipsam ipsa cupiditate, illum eos expedita odio nesciunt omnis tenetur.
+ Officiis molestias aliquam quos!
+